Partners
- API v1
- API v0 (Networks)
List partners
View the list of partners for the current user's organization.
POST /management/v1/partners
Request
{
"page": {
"offset": integer,
"limit": integer,
},
"filter": {
"name": string
}
}
You can filter on the following dimensions:
Name | Type | Description |
---|---|---|
page.offset | uint | Number of partners to skip for this filter |
page.limit | uint | Maximum number of partners to return |
filter.name | string | (Optional) The name of the partner you want to match. Subname-matching is possible. |
Responses
200
{
"results": [
{
"createdAt": timestamp,
"id": integer,
"name": string,
"updatedAt": timestamp
}
]
}
Name | Type | Description |
---|---|---|
createdAt | timestamp | The date and time in UTC at which the partner was created |
id | uint | justtrack's identifier for the advertising partner |
name | string | The name of the partner |
updatedAt | timestamp | The date and time in UTC at which the partner was last updated |
warning
This is the documentation for API v0, which is no longer maintained.
For up-to-date documentation, see the latest version.
List networks
List partners return the list of partners for the current user's organization.
POST /management/v0/networks
Request
The message body for is a filter
object:
{
"filter": {
"matches": [
{
"dimension": "network.vendor",
"operator": "~",
"values": [
"unity"
]
}
]
}
}
You can filter on the following dimensions:
Dimension | Description |
---|---|
network.vendor | The name of the Network |
If you don't want to filter the list, you can use an empty object in the request body:
`{}`
Response
{
"result": [
{
"id": int,
"name": "string",
"vendor": "string",
"spendCurrency": "string",
"createdAt": "string",
"updatedAt": "string"
}
]
}
Name | Type | Description |
---|---|---|
id | int | ID of the partner |
name | string | Name of the partner |
vendor | string | Name of the vendor |
spendCurrency | string | Spend currency |
createdAt | string | The date of partner creation. |
updatedAt | string | The date of last partner update. |