AdAccountUpdate
The request body you use to update an ad account.
Declaration
object AdAccountUpdateProperties
| Name | Type | Description |
|---|---|---|
name | string | Display name of the ad account. Mutable. Must not be null if provided. |
delegations | [DelegationUpdate] | Advertiser resource delegations for this account. Providing this field sends the complete list of delegations you want the account to have, not just the ones you’re adding or changing. Apple replaces the account’s entire delegation list with what you send, so Apple removes any existing delegation left out of the array. See DelegationUpdate. Mutable. |
productFeatures | [ProductFeatures] | Product features enabled for this ad account. This endpoint ignores this field. |
Discussion
The AdAccountUpdate object is the request payload for modifying an existing ad account. Include only the fields you want to change. Fields you leave out keep their current value.
Example
{
"name": "AwayFinder Ad Account Updated",
"delegations": [
{
"resourceId": "12345678",
"resourceType": "CONTENT_PROVIDER"
}
]
}