Sign in

Mutate ad group ads

documented

Create, update, or remove ad group ads in batch for a given customer.

POST /v23/customers/{customer_id}/adGroupAds:mutateAd Groupsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://googleads.googleapis.com/v23/customers/{{$customer_id}}/adGroupAds:mutate" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "developer-token: {{ADS_DEVELOPER_TOKEN}}" \
  -H "login-customer-id: {{$MANAGER_CUSTOMER_ID}}" \
  -d '{"operations": [{"adGroupAdOperation": {"create": {"adGroup": "customers/{{$customer_id}}/adGroups/{{$ad_group_id}}", "status": "PAUSED", "ad": {"finalUrls": ["{{$final_url}}"], "responsiveSearchAd": {"headlines": [ {"text": "{{$headline1}}"}, {"text": "{{$headline2}}" } ], "descriptions": [ {"text": "{{$description}}"} ] } } } } }] , "partialFailure": {{$partial_failure}}, "validateOnly": {{$validate_only}}, "responseContentType": "MUTABLE_RESOURCE"}'}