Get Advertiser Portfolio
Retrieving all Advertisers
Use this call to fetch a list of all advertisers in your account.
https://api.criteo.com/preview/advertisers/me
The API will return an array of the IDs and names of all advertisers you've been granted access to.
{
"data": [
{
"type": "advertiser",
"id" "1234",
"attributes": {
"advertiserName": "Advertiser A"
},
"meta": null
},
{
"type": "advertiser",
"id" "5678",
"attributes": {
"advertiserName": "Advertiser B"
},
"meta": null
}
],
"errors": [],
"warnings": []
}
Updated 10 days ago