获取子跟踪链接

使用此终端,为指定的应用获得子跟踪链接。

操作前须知

要使用该终端,您需要 Adjust API 识别码。请按照验证指南中的说明操作,获得识别码。

终端

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

GET 请求

返回与应用关联的子跟踪链接列表。

参数

参数数据类型In描述
app_token*字符串路径 (Path)应用的 12 位数标识符。
tracker_token*字符串路径 (Path)父级跟踪链接跟踪码。
After字符串查询从下一页获取元素的游标。
Before字符串查询从上一页获取元素的游标。
limit整数查询响应中包含的最大元素数,须为正整数值。

分页

响应

{
  "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",
 }

字段

示例

cURL

{
  "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/yxs12pfew/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",
      }
    ]
  }
}