Skip to main content

App Partner Connection

With the App Partner Connection API, you can:

  • View details about an app partner connection
  • Create a partner connection for an app (This is the API equivalent of connecting a partner in the dashboard)
  • Update details about an app partner connection
info

Without an app partner connection, justtrack can't operate for most of its features, including campaign creation, tracking, and more.

Get app partner connection

Get data for existing app partner connection.

GET /management/v1/app/{appId}/connection/{partnerId}

Request

Path parametersTypeDescription
appIduintjusttrack's identifier for the app
partnerIduintjusttrack's identifier for the advertising partner

Response

200
{
"campaignTypes": []string,
"defaultChannelId": integer,
"multiCountryCampaignAllowed": boolean,
"trackingUrlSlug": string
}
FieldTypeDescription
campaignTypes[]stringList of campaign types this partner can run. Possible values are acquisition and retargeting.
defaultChannelIduintID of the default channel
multiCountryCampaignAllowedbooleantrue if this partner supports multiple countries in one campaign
trackingUrlSlugstringValue of the tracking URL slug
400

You will receive a HTTP 400 if neither the app or partner exist.

Create or update app partner connection

Create or update an app partner connection.

PUT /management/v1/app/{appId}/connection/{partnerId}

Request

Path parametersTypeDescription
appIduintjusttrack's identifier for the app
partnerIduintjusttrack's identifier for the advertising partner

The message body has the following form:

{
"campaignTypes": []string,
"defaultChannelId": integer,
"multiCountryCampaignAllowed": boolean,
"trackingUrlSlug": string,
}
FieldTypeDescription
campaignTypes[]stringList of campaign types this partner can run. Possible values are acquisition and retargeting.
defaultChannelIduintID of the default channel
multiCountryCampaignAllowedbooleantrue if this partner supports multiple countries in one campaign
trackingUrlSlugstringValue of the tracking URL slug

Response

200
{
"campaignTypes": []string,
"defaultChannelId": integer,
"multiCountryCampaignAllowed": boolean,
"trackingUrlSlug": string
}
FieldTypeDescription
campaignTypes[]stringList of campaign types this partner can run. Possible values are acquisition and retargeting.
defaultChannelIduintID of the default channel
multiCountryCampaignAllowedbooleantrue if this partner supports multiple countries in one campaign
trackingUrlSlugstringValue of the tracking URL slug
400

You will receive a HTTP 400 if neither the app or partner exist.