[Advertiser] Get Advertiser Portfolio
Retrieving all Advertisers
Use this call to fetch a list of all advertisers in your account.
https://api.criteo.com/legacy/marketing/v1/portfolio
curl --request GET \
--url https://api.criteo.com/legacy/marketing/v1/portfolio \
--header 'Accept: application/json'
The API will return an array of the IDs and names of all advertisers you've been granted access to.
[
{
"advertiserId": 1234,
"advertiserName": "Advertiser A"
},
{
"advertiserId": 5678,
"advertiserName": "Advertiser B"
}
]
Updated almost 4 years ago