This page describes API endpoints for viewing, editing, and creating Global Trackers.
GET
/backend/open-api/v1/users/global-postbacks/{global_postback_id}
View all Global Trackers and their properties.
Headers
Name | Value |
---|---|
Authorization | Bearer <token> |
Path parameters
Name | Type | Description | Required |
---|---|---|---|
global_postback_id |
Integer | ID of a Global Tracker. Add to the path to review a single racker. |
Response
{
"data": [
{
"id": 94,
"affiliate_id": 227,
"goal_id": 0,
"type": 0,
"status": 2,
"content": "<https://example.com>&rev_share={revenue}",
"archived": false
},
{
"id": 93,
"affiliate_id": 227,
"goal_id": 0,
"type": 0,
"status": 2,
"content": "<https://example.com>&bonus={aff_sub13}",
"archived": false
}
],
"total": 106,
"per_page": 200,
"page": 1,
"pages": 1
}
POST
/backend/open-api/v1/users/global-postbacks
Create a Global Tracker.
Headers
Name | Value |
---|---|
Content-Type | application/json |
Authorization | Bearer <token> |