---
title: AdAccountCreate
framework: Apple Ads Platform API
role: symbol
role_heading: Object
platforms: [apple ads platform api 1.0+]
path: apple-ads-platform-api/adaccountcreate
---

# AdAccountCreate

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

## Declaration

```data
object AdAccountCreate
```

## Properties

name: The display name of the ad account. delegations: 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: 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

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

- [AdAccount](apple-ads-platform-api/adaccount.md)
- [AdAccountUpdate](apple-ads-platform-api/adaccountupdate.md)
- [AdAccountResponse](apple-ads-platform-api/adaccountresponse.md)
- [AclAdAccount](apple-ads-platform-api/acladaccount.md)
- [User ACL](apple-ads-platform-api/useracl.md)
- [UserAclListResponse](apple-ads-platform-api/useracllistresponse.md)
- [UserAccessResult](apple-ads-platform-api/useraccessresult.md)
- [Delegation](apple-ads-platform-api/delegation.md)
- [DelegationCreate](apple-ads-platform-api/delegationcreate.md)
- [DelegationUpdate](apple-ads-platform-api/delegationupdate.md)
- [Me](apple-ads-platform-api/me.md)
- [MeResponse](apple-ads-platform-api/meresponse.md)
- [Org](apple-ads-platform-api/org.md)
- [OrgResponse](apple-ads-platform-api/orgresponse.md)
