Contents

AdAccountCreate

Request body for creating a new ad account under an organization.

Declaration

object AdAccountCreate

Properties

NameTypeDescription
name Requiredstring

The display name of the ad account.

delegations[DelegationCreate]

Advertiser resource delegations to associate with the ad account, matching the account’s productFeatures value. Use a CONTENT_PROVIDER delegation for App Store advertising, or a BUSINESS_BRAND delegation for Apple Maps advertising. See DelegationCreate.

productFeatures Required[ProductFeatures]

Product features enabled for this ad account. Set to APPSTORE_APP_MANUAL for App Store advertising or BUSINESS_BRAND_MANUAL for Apple Maps advertising. Each ad account is authorized for one or the other, not both. If your organization needs both, create a separate ad account for each. See ProductFeatures for how each feature affects campaign eligibility.

Discussion

The AdAccountCreate object is the request body for Create Ad Accounts.

Example

{
  "name": "AwayFinder Ad Account",
  "productFeatures": [
    "APPSTORE_APP_MANUAL"
  ],
  "delegations": [
    {
      "resourceId": "12345678",
      "resourceType": "CONTENT_PROVIDER"
    }
  ]
}

See Also