Skip to main content

Configure Features

Configurable features

You configure features by app and partner. If you want to configure features for multiple apps, you must call this endpoint for each app.

info

For each feature, you must create all the required keys, which are specified by the Partner Configuration API.

The available features are:

  • attribution: required for tracking attributions
  • campaign: required for bid and campaign automation
  • creative: required for creative automation
  • skad-import: required for spend imports or tracking event-based spend data
  • spend-import: required for SkAd imports or tracking event-based SkAd data
  • tracking: required for tracking parameter macros (custom partners only)
  • postback: required to share data via postbacks

You can switch between these features by exchanging the macro in the URL path to the desired feature:

/management/v1/partner-configuration/{feature}
info

For attribution viewEventTimeFrame and clickEventTimeFrame, use ISO8601 duration-only format, i.e. P1DT0H0M

List partner configurations

View the list of feature configurations for the given app and partner.

POST /management/v1/partner-configuration/{feature}

Request

{
"page": {
"offset": integer,
"limit": integer,
},
"filter": {
"appId": integer,
"partnerId": integer
}
}
ParameterTypeDescription
page.offsetuintNumber of feature configurations to skip for this filter
page.limituintMaximum number of feature configurations to return
filter.appIduint(Optional) justtrack's identifier for the app
filter.partnerIduint(Optional) justtrack's identifier for the advertising partner

Responses

200
{
"results": [
{
"appId": integer,
"key": string,
"partnerId": integer,
"value": string
}
]
}
FieldTypeDescription
appIduintjusttrack's identifier for the app
keystringThe name of the partner configuration key
partnerIduintjusttrack's identifier for the advertising partner
valuestringThe value of the partner configuration

Update configurations

Create or update feature-specific configurations for a given app and partner.

PUT /management/v1/partner-configuration/{feature}

Request

{
"appId": integer,
"configuration": [
{
"key": string,
"value": string
}
],
"partnerId": integer
}
ParameterTypeDescription
appIduintjusttrack's identifier for the app
configuration.keystringThe key of the partner configuration
configuration.valuestringThe value of the partner configuration
partnerIduintjusttrack's identifier for the advertising partner
warning

You must provide values for all keys listed by List partner configurations. Otherwise, the feature won't work as expected.

Responses

200
[
{
"appId": integer,
"key": string,
"partnerId": integer,
"value": string
}
]
FieldTypeDescription
appIduintjusttrack's identifier for the app
keystringThe name of the partner configuration key
partnerIduintjusttrack's identifier for the advertising partner
valuestringThe value of the partner configuration