TikTok Ads Advertisers
An advertiser is an ad account in TikTok Ads, similar to an ad account elsewhere. Each advertiser contains campaigns, ad groups, and ads.
Retrieving the List of Advertisers
LightLead uses the TikTok Ads API to retrieve the list of available accounts:
GET /open_api/v1.3/oauth2/advertiser/get/What Is Returned
| Field | Type | Description |
|---|---|---|
advertiser_id | string | Unique identifier |
advertiser_name | string | Ad account name |
status | string | Account status |
role | string | User's role in the account |
currency | string | Account currency |
timezone | string | Time zone |
industry | string | Industry |
company | string | Company name |
balance | number | Account balance |
Converting from IDs
The TikTok API returns the list of advertisers as an array of IDs. LightLead converts these into full objects:
typescript
// Retrieving advertisers from IDs
const advertisers = await fetchAdvertisers(ids);Selecting the Active Advertiser
After connecting, you can:
- Select the primary advertiser for requests
- Switch between multiple advertiser accounts
- Rename it for easier identification