帮助中心
|
获取合作伙伴
使用此终端获取合作伙伴列表和关联数据。
操作前须知
要使用该终端,您需要 Adjust API 识别码。请按照验证指南中的说明操作,获得识别码。
终端
https://api.adjust.com/public/v1/partners
GET 请求
获取合作伙伴列表和关联数据。返回的数据为一个合作伙伴对象数组。
参数
参数 | 数据类型 | In | 描述 |
---|---|---|---|
After | 字符串 | 查询 | 从下一页获取元素的游标。 |
Before | 字符串 | 查询 | 从上一页获取元素的游标。 |
limit | 整数 | 查询 | 响应中包含的最大元素数,须为正整数值。 |
响应
{
"id": 1,
"display_name": "String",
"supports_cost_data": true
}
示例
{
"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
}
]
}
}