Hi, i am fairly new with adwords API and can't find the missing example at the docs:
there is a way how to connect the campaign to the label, but there is no example about how to connect the ads to the label
i am using the python API
here is the campaign example, can you please point me at the right direction?
36 campaign_service = client.GetService('CampaignService', version='v201806')
37
38 operations = [
39 ¦ {
40 ¦ ¦ 'operator': 'ADD',
41 ¦ ¦ 'operand': {
42 ¦ ¦ ¦ 'campaignId': campaign_id1,
43 ¦ ¦ ¦ 'labelId': label_id,
44 ¦ ¦ }
45 ¦ },
46 ¦ {
47 ¦ ¦ 'operator': 'ADD',
48 ¦ ¦ 'operand': {
49 ¦ ¦ ¦ 'campaignId': campaign_id2,
50 ¦ ¦ ¦ 'labelId': label_id,
51 ¦ ¦ }
52 ¦ }
53 ]
54
55 result = campaign_service.mutateLabel(operations)