Get subtrackers

Use this endpoint to get the subtrackers for your specified app.

Before you begin

To use this endpoint, you need an Adjust API token. Follow the instructions in the authentication guide to get your token.

Endpoint

https://api.adjust.com/public/v1/apps/{app_token}/trackers/{tracker_token}/children

GET request

Return a list of subtrackers associated with your app.

Parameters

ParameterData typeInDescription
app_token*StringPathYour app's 12 digit identifier.
tracker_token*StringPathThe parent tracker token.
afterStringQueryCursor to get elements from the next page.
beforeStringQueryCursor to get elements from the previous page.
limitIntegerQueryThe maximum number of elements included in the response. Needs to be a positive integer value.

Pagination

Response

{
  "name": "String",
  "token": "String",
  "label": "String",
  "level": 2,
  "archived": false,
  "has_subtrackers": false,
  "partner_id": null,
  "cost_data_enabled": false,
  "url": "String",
  "click_url": "String",
  "impression_url": "String",
 }

Fields

Example

cURL
curl --location --request GET 'https://api.adjust.com/public/v1/apps/gwzpeepw8uf8/trackers/abc123/children?limit=1' \
--header 'Authorization: Token token={API_TOKEN}'
{
  "data": {
    "api_version": "1",
    "request_id": "FcK55-tdJUDOWQIAABsB",
    "timestamp": "2019-09-09T09:07:06Z",
    "paging": {
      "page_size": "1",
      "collection_size": "1",
      "total": "199",
      "next": "https://api.adjust.com/public/v1/apps/gwzpeepw8uf8/trackers/abc123/children?after=g2wAAAACYhW1_gxkAANuaWxq&limit=1",
      "previous": null,
      "cursors": {
        "after": "g2wAAAACYhW1_gxkAANuaWxq",
        "before": null
      }
    },
    "items": [
      {
        "name": "Adroll::SpringCampaign",
        "token": "xyz456",
        "label": "SpringCampaign",
        "level": 2,
        "archived": false,
        "has_subtrackers": false,
        "partner_id": null,
        "cost_data_enabled": false,
        "url": "https://app.adjust.com/xyz456",
        "click_url": "https://app.adjust.com/xyz456?idfa={idfa}&deeplink=http%3A%2F%2Fa.b%2Fc%3Fd%3D1%26e%3D%%MACROS%%",
        "impression_url": "https://s2s.adjust.com/impression/xyz456?idfa={idfa}&s2s=1",
      }
    ]
  }
}