Partner Configuration
- API v1
- API v0 (Vendor Configurations)
This API specifies keys which are required for certain justtrack features. Without them, justtrack won't be able to successfully operate or integrate with partners.
A configuration key may appear for different features. You have to fill it every time.
List partner configurations
View the list of partner configurations for a requested feature.
POST /management/v1/partner-configurations
Request
{
"page": {
"offset": integer,
"limit": integer,
},
"filter": {
"feature": string,
"partnerId": integer,
}
}
Name | Type | Description |
---|---|---|
page.offset | uint | Number of partner configurations to skip for this filter |
page.limit | uint | Maximum number of partner configurations to return |
filter.feature | string | (Optional) The name of the feature |
filter.partnerId | uint | (Optional) justtrack's identifier for the advertising partner |
You can use the following values for filter.feature
:
attribution
campaign
creative
spend-import
skad-postback
postback
tracking
Responses
200
{
"results": [
{
"features": []string,
"key": string,
"partnerId": integer
}
]
}
Name | Type | Description |
---|---|---|
features | []string | The names of the features this key is required for |
key | string | The name of the key |
partnerId | uint | justtrack's identifier for the advertising partner |
Vendor configurations specify keys which are required for certain justtrack features. Without them, justtrack won't be able to successfully operate or integrate with partners.
A configuration key may appear for different features. You have to fill it every time.
List vendor configurations
View the list of vendor configurations for a requested feature.
POST /management/v0/vendor-configurations
Request
The message body for is a filter
object:
{
"filter": {
"matches": [
{
"dimension": "vendorConfiguration.feature",
"operator": "=",
"values": [
"attribution"
]
},
{
"dimension": "vendorConfiguration.vendor",
"operator": "=",
"values": [
"unity"
]
}
],
"bool": "AND"
}
}
You can filter on the following dimensions:
Dimension | Description |
---|---|
vendorConfiguration.vendor | The name of the vendor |
vendorConfiguration.feature | The name of the feature |
Currently available features are:
- attribution
- postback
Response
[
{
"key": string,
"sensitive": bool
}
]
Name | Type | Description |
---|---|---|
key | string | The name of the key |
sensitive | boolean | True, if the key is confidential. False otherwise |