Update Ad Account
documentedUpdate an ad account's fields.
PATCH /ad_accounts/{ad_account_id}Ad Accountsno implementation yet0 runsNo 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://api-partner.spotify.com/ads/v3/ad_accounts/{{$ad_account_id}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$name}}", "industry": "{{$industry}}", "billing_address": {"name": "{{$billing_name}}", "street": "{{$billing_street}}", "city": "{{$billing_city}}", "region": "{{$billing_region}}", "postal_code": "{{$billing_postal_code}}", "tax_region": "{{$billing_tax_region}}"}, "website": "{{$website}}", "legal_entity_name": "{{$legal_entity_name}}", "tax_id": "{{$tax_id}}", "currency_code": "{{$currency_code}}"}'