This page describes API endpoints for viewing, editing, and creating Default Trackers.
GET
/backend/open-api/v1/users/affiliate-trackers/{default_affiliate_tracker_id}
View all Default Trackers and their properties.
Headers
Name | Value |
---|---|
Authorization | Bearer <token> |
Path parameters
Name | Type | Description | Required |
---|---|---|---|
affiliate_tracker_id |
Integer | ID of an Affiliate Tracker. Add to the path to review a single Affiliate Tracker. |
Response
{
"data": [
{
"id": 1,
"offer_id": 1,
"goal_id": 1,
"affiliate_id": 6,
"type": 0,
"status": 0,
"content": "{advertiser_id}",
"archived": false
},
...
{
"id": 232,
"offer_id": 20,
"goal_id": 37,
"affiliate_id": 458,
"type": 1,
"status": 1,
"content": "test",
"archived": false
}
],
"total": 207,
"per_page": 200,
"page": 1,
"pages": 2
}
POST
/backend/open-api/v1/users/affiliate-trackers
Create a new Default Tracker.
Headers
Name | Value |
---|---|
Content-Type | application/json |
Authorization | Bearer <token> |