获取合作伙伴

使用此终端获取合作伙伴列表和关联数据。

操作前须知

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

终端

https://api.adjust.com/public/v1/partners

GET 请求

获取合作伙伴列表和关联数据。返回的数据为一个合作伙伴对象数组。

参数

参数数据类型In描述
After字符串查询从下一页获取元素的游标。
Before字符串查询从上一页获取元素的游标。
limit整数查询响应中包含的最大元素数,须为正整数值。

分页

响应

{
  "id": 1,
  "display_name": "String",
  "supports_cost_data": true
}

字段

示例

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/partners?after=g2wAAAACYhW1_gxkAANuaWxq&limit=1",
      "previous": nil,
      "cursors": {
        "after": "g2wAAAACYhW1_gxkAANuaWxq",
        "before": nil
      }
    },
    "items": [
      {
        "id": 174,
        "display_name": "Adcolony",
        "supports_cost_data": true
      }
    ]
  }
}