Trackier v1
Search
⌃K

List Advertisers

HTTP method
End Point
GET
/advertiser
GET
/advertiser
GET
/advertiser/{id}

Response body parameters

  • Get all the advertisers
curl -X GET -H "X-Api-Key: {key}" -H "Cache-Control: no-cache" "http://api.trackier.com/advertiser"
{
"data": {
"advertisers": [
{
"org_id": "string",
"username": null,
"name": "string",
"email": "string",
"password": "string (hashed)",
"phone": "9958636988",
"country": "IN",
"currency": "USD",
"type": "publisher",
"login": null,
"_id": "string (24 characters)",
"live": false,
"created": "2016-10-21",
"modified": null,
"meta": []
},
{
"org_id": "string",
"username": null,
"name": "string",
"email": "[email protected]",
"password": "string (hashed)",
"phone": "string",
"country": "IN",
"currency": "USD",
"type": "publisher",
"login": null,
"_id": "string (24 characters)",
"live": true,
"created": "2016-10-25",
"modified": "2016-11-08",
"meta": {
"afields": {
"skype_id": "live:testUser",
"screenshot": "image.png"
}
}
}
]
}
}
  • Get a single advertiser info
curl -X GET -H "X-Api-Key: {key}" -H "Cache-Control: no-cache" "http://api.trackier.com/advertiser/{id}"
{
"data": {
"advertiser": {
"org_id": "string",
"username": null,
"name": "string",
"email": "[email protected]",
"password": "03aa85cad0cd378e1ce36e0e12e34910b8e3b06f",
"phone": "9958636988",
"country": "IN",
"currency": "USD",
"type": "publisher",
"login": null,
"_id": "580a45201d41c82966347b8b",
"live": false,
"created": "2016-10-21",
"modified": null,
"meta": []
}
}
}