Get Ad Accounts for Current User
Returns ad account(s) for the current authenticated user.
Request
- limitinteger
Limit or page size for a given response.
Default:limit=50
Range:1
-50
Example:limit=50
- offsetinteger
Starting position of the next record to assist in data pagination.
Default:offset=0
Example:offset=0
Response
A list of ad accounts.
- page_sizeinteger [int32]
- total_resultsinteger [int32]
- offsetinteger [int32]
- current_pageinteger [int32]
- idstring [uuid]
A unique identifier for the entity.
Example:"ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a"
- business_idstring [uuid]
A unique identifier for the entity.
Example:"ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a"
- created_atstring [date-time]
Date the entity was created. Time should be in ISO 8601 format using Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ
Example:"2026-01-23T04:56:07Z"
- updated_atstring [date-time]
Date the entity was updated. Time should be in ISO 8601 format using Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ
Example:"2026-01-23T04:56:07Z"
- country_codestring
The country or region of the geo in ISO alpha-2 country code format.
Example:"US"
- industrystring
The Ad Account's listed industry.
Example:"Media & Entertainment"
- namestring
Name given to identify your entity.
Pattern:^\S.*\S$
Length between2
and120
Example:"Entity_1"
- tax_idstring
The tax ID on record for the ad account.
Example:"ATU82660371"
- websitestring
The website associated with the ad account.
Example:"https://www.spotify.com"
- streetstring
Street number and address of ad account.
Example:"123 Spotify Avenue"
- citystring
city of ad account
Example:"Los Angeles"
- regionstring
Region where city is located.
Example:"California"
- postal_codestring
Postal code for address.
Example:"90210"
- tax_regionstring
Geo in ISO alpha-2 country code format for taxable country.
Example:"ES"
- display_namestring
Nickname to display for ad account.
Pattern:^\S.*\S$
Example:"Ad Account 2"
- statusstring
The status of the ad account.
Allowed values:"ACTIVE"
,"INACTIVE"
- statusReasonstring
The status reason of the ad account.
Allowed values:"FAILED_PAYMENT"
,"FRAUD_ACTIVITY"
,"CLOSED_MARKET"
,"UNSET"
,"UNRECOGNIZED"
Response sample
{ "paging": { "page_size": 0, "total_results": 0, "offset": 0, "current_page": 0 }, "ad_accounts": [ { "id": "ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a", "business_id": "ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a", "created_at": "2026-01-23T04:56:07Z", "updated_at": "2026-01-23T04:56:07Z", "country_code": "US", "industry": "Media & Entertainment", "name": "Entity_1", "tax_id": "ATU82660371", "website": "https://www.spotify.com", "address": { "street": "123 Spotify Avenue", "city": "Los Angeles", "region": "California", "postal_code": "90210", "tax_region": "ES" }, "display_name": "Ad Account 2", "status": "ACTIVE", "statusReason": "FAILED_PAYMENT" } ]}