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. |
Response
{
"id": 1,
"display_name": "String",
"supports_cost_data": true
}
Example
{
"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
}
]
}
}