Yes. I try to remove the video (or mediaId) from the campaign (but after 
changing API I can't remove mediaId from  

youtubeVideoMediaIds


list

I do not want to replace the video, I want to remove video from UAC campaign

My UAC campaign has this structure:

#     'id': 1693xxxxx,
#     'campaignGroupId': None,
#     'name': 'name',
#     'status': None,
#     'servingStatus': None,
#     'startDate': None,
#     'endDate': None,
#     'budget': None,
#     'conversionOptimizerEligibility': None,
#     'adServingOptimizationStatus': None,
#     'frequencyCap': None,
#     'settings': [
#         {
#             'Setting.Type': 'GeoTargetTypeSetting',
#             'positiveGeoTargetType': 'DONT_CARE',
#             'negativeGeoTargetType': 'DONT_CARE'
#         },
#         {
#             'Setting.Type': 'UniversalAppCampaignSetting',
#             'appId': 'xxxxx',
#             'appVendor': 'xxxx',
#             'description1': 'xxxx',
#             'description2': 'xxxx',
#             'description3': 'xxxx',
#             'description4': 'xxxx',
#             'youtubeVideoMediaIds': [123,123,456],



And I want to remove 123, for example.

But I rewrote code with AdService.mutate()

operations = [{
    'operator': 'SET',
    'operand': {
        'id': 1234,#ad_id,
        'xsi_type': 'UniversalAppAd',
        'videos': [
            {
                'asset': {
                    'xsi_type': 'YouTubeVideoAsset',
                    'youTubeVideoId': 'Lvhv6xxxx',
                    'assetId': 123
                },
            },
        ],
    },
}]

ad_service = client.GetService('AdService', version='v201809')
ad_service.mutate(operations)


And it required headlines and descriptions I added it:

*googleads.errors.GoogleAdsServerFault: [CollectionSizeError.TOO_FEW @ 
operations[0].operand.headlines, CollectionSizeError.TOO_FEW @ 
operations[0].operand.descriptions]*

Then I added headlines and descriptions:

'headlines': [{
    "asset": {
        "xsi_type": "TextAsset",
        "assetId": 123,
        "assetSubtype": "TEXT",
        "Asset.Type": "TextAsset",
        "assetText": "xxxx"
    }}],
'descriptions': [{
    "asset": {
        "xsi_type": "TextAsset",
        "assetId": 123,
        "assetSubtype": "TEXT",
        "Asset.Type": "TextAsset",
        "assetText": "xxxx"
    }}],


But after adding I've got this error

*googleads.errors.GoogleAdsServerFault: [CollectionSizeError.TOO_FEW @ 
operations[0].operand.headlines, CollectionSizeError.TOO_FEW @ 
operations[0].operand.descriptions]*

What I need to do, that to remove a video (mediaId) from UAC Campaign. 
Thanks!

четверг, 15 августа 2019 г., 9:50:37 UTC+3 пользователь adsapiforumadvisor 
написал:

> Hi,
>
> My apologies for the confusion. I can see that you wish to remove the 
> video itself from the ad. Could you, instead, try replacing the video 
> instead of removing it using the AdService.mutate() 
> <https://developers.google.com/adwords/api/docs/reference/v201809/AdService#mutate>
> ?
>
> Regards,
> Dannison
> Google Ads API Team
>
> ref:_00D1U1174p._5001UEIvKC:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/baf01770-4734-4843-9f19-0fd2312983d0%40googlegroups.com.
  • OPERA... 'Игорь Тирский' via AdWords API and Google Ads API Forum
    • ... Google Ads API Forum Advisor Prod
      • ... 'Игорь Тирский' via AdWords API and Google Ads API Forum
    • ... Google Ads API Forum Advisor Prod
      • ... 'Игорь Тирский' via AdWords API and Google Ads API Forum
    • ... Google Ads API Forum Advisor Prod

Reply via email to