相关文章推荐
大鼻子的煎鸡蛋  ·  python 调用海康威视工业相机的案例 ...·  8 月前    · 
乐观的黄花菜  ·  TypeScript样式组件实例上的错误:没 ...·  8 月前    · 
开朗的针织衫  ·  【分享】讯飞星火认知大模型Python调用上 ...·  1 年前    · 
孤独的火龙果  ·  无法加载文件或程序集'Microsoft.C ...·  1 年前    · 
干练的甜瓜  ·  Java 通过HttpClient ...·  1 年前    · 
Code  ›  Get partners | Adjust Help Center
https://help.adjust.com/zh/article/get-partners
跑龙套的小蝌蚪
1 年前

We constantly publish updates to our documentation, which may not yet be available in your language. For the most current information, use the English version.

Help Center
for Developers
for Marketers for Partners Classic dashboard
Search Go to Adjust Suite
Languages
  • English
  • Español
  • Français
  • Tiếng Việt
  • Türkçe
  • Русский
  • 中文
  • 日本語
  • 한국어
  • Português
More
  • ➝ Suite
English
  • English
  • Español
  • Français
  • Tiếng Việt
  • Türkçe
  • Русский
  • 中文
  • 日本語
  • 한국어
  • Português
Help Center
|

Get partners

Use this endpoint to fetch a list of partners and associated data.

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/partners

GET request

Fetch a list of partners and associated data. Data are returned in an array of partner objects.

Parameters

Parameter Data type In Description
after String Query Cursor to get elements from the next page.
before String Query Cursor to get elements from the previous page.
limit Integer Query The maximum number of elements included in the response. Needs to be a positive integer value.

Pagination

Results from this endpoint are paginated using a cursor. Each page returns the location of the previous and next pages. You can include these in your calls to return specific pages. You can also limit the number of items included on a page. The default limit is 50.

Each results page contains a "paging" object containing the cursor positions. You can use these cursor positions to programatically move between pages. For example, the first page might contain results like this:

"paging": {
      "page_size": "50",
      "collection_size": "49",
      "total": "199"
      "cursors": {
        "after": "g2wAAAACYhW1_gxkAANuaWxq",
        "before": null
      "next": "https://api.adjust.com/public/v1/apps/yxs12pfewq/trackers?after=g2wAAAACYhW1_gxkAANuaWxq&limit=50",
      "previous": null
    }

To go to the second page, add the after value to the next request in the after parameter. For example:

https://api.adjust.com/public/v1/apps/yxs12pfewq/trackers?after=g2wAAAACYhW1_gxkAANuaWxq

Response

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

Fields

Field Data type Description Example
id Integer The partner's ID. 174
display_name String The partner's name. Adcolony
support_cost_data Boolean Whether the partner supports cost data. true

Example

cURL
curl --location --request GET 'https://api.adjust.com/public/v1/partners?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/partners?after=g2wAAAACYhW1_gxkAANuaWxq&limit=1",
      "previous": nil,
      "cursors": {
        "after": "g2wAAAACYhW1_gxkAANuaWxq",
        "before": nil
    "items": [
        "id": 174,
 
推荐文章
大鼻子的煎鸡蛋  ·  python 调用海康威视工业相机的案例 - CSDN文库
8 月前
乐观的黄花菜  ·  TypeScript样式组件实例上的错误:没有重载匹配此调用-腾讯云开发者社区-腾讯云
8 月前
开朗的针织衫  ·  【分享】讯飞星火认知大模型Python调用上下文测评 - 唯一客服系统开发笔记 - 博客园
1 年前
孤独的火龙果  ·  无法加载文件或程序集'Microsoft.CodeAnalysis,version= 1.3.1.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35‘或
1 年前
干练的甜瓜  ·  Java 通过HttpClient Post方式提交json,并从服务端返回json数据_fasterry的博客-CSDN博客
1 年前
今天看啥   ·   Py中国   ·   codingpro   ·   小百科   ·   link之家   ·   卧龙AI搜索
删除内容请联系邮箱 2879853325@qq.com
Code - 代码工具平台
© 2024 ~ 沪ICP备11025650号