Skip to main content

Campaign

List campaign

View created campaigns for your organization.

POST /management/v1/campaigns

Request

{
"page": {
"offset": integer,
"limit": integer
},
"filter": {
"partnerId": string,
"campaignId": string
}
}
NameTypeDescription
offsetuintSkips the offset rows before beginning to return the response.
The default is 0
limituintDetermines the number of campaigns returned in the response.
The default is 100
partnerIduint(Optional) justtrack's identifier for the advertising partner
campaignIdstring(Optional) The identifier for the campaign that originated with the partner

Responses

200
{
"results": [
{
"type": string,
"countryCodes": []string,
"createdAt": timestamp,
"id": string,
"goalName": string,
"name": string,
"partnerId": string,
"optimizationType": string,
"platform": string,
"promoCode": string,
"updatedAt": timestamp,
"appId": integer
}
]
}
NameTypeDescription
typestringThe type of campaign. Possible values are acquisition and retargeting.
countryCodes[]stringA list of country codes. (The two-character ISO country code derived from the IP)
createdAttimestampThe date and time in UTC at which the campaign was created.
idstring(Optional) The identifier for the campaign that originated with the partner
goalNamestring(Optional) justtrack's name for the goal tied to the ad campaign
namestringThe name for the campaign that originated with the partner
partnerIduintjusttrack's identifier for the advertising partner
optimizationTypestring(Optional) Available options are cpa or cpi.
platformstringThe platform to which the app belongs
promoCodestring(Optional) The promo code retrievable by the SDK for this campaign.
updatedAttimestampThe date and time in UTC at which the campaign was last updated.
appIdtimestampjusttrack's identifier for the app

Create campaign

Create a campaign.

POST /management/v1/campaign

Request

{
"type": string,
"appId": integer,
"countryCodes": []string,
"id": string,
"goalName": string,
"name": string,
"partnerId": integer,
"optimizationType": string,
"promoCode": string
}
NameTypeDescription
typestringThe type of campaign. Possible values are acquisition and retargeting.
appIdtimestampjusttrack's identifier for the app
countryCodes[]stringA list of country codes. (The two-character ISO country code derived from the IP)
idstringThe identifier for the campaign that originated with the partner
goalNamestringjusttrack's name for the goal tied to the ad campaign
namestringThe name for the campaign that originated with the partner
partnerIduintjusttrack's identifier for the advertising partner
optimizationTypestringAvailable options are cpa or cpi.
promoCodestring(Optional) The promo code you want to pass to the SDK for this campaign.

Responses

200
{
"type": string,
"countryCodes": []string,
"createdAt": timestamp,
"id": string,
"goalName": string,
"name": string,
"partnerId": string,
"optimizationType": string,
"platform": string,
"promoCode": string,
"updatedAt": timestamp,
"appId": integer
}
NameTypeDescription
typestringThe type of campaign. Possible values are acquisition and retargeting.
countryCodes[]stringA list of country codes. (The two-character ISO country code derived from the IP)
createdAttimestampThe date and time in UTC at which the campaign was created.
idstringThe identifier for the campaign that originated with the partner
goalNamestringjusttrack's name for the goal tied to the ad campaign
namestringThe name for the campaign that originated with the partner
partnerIduintjusttrack's identifier for the advertising partner
optimizationTypestringAvailable options are cpa or cpi.
promoCodestring(Optional) The promo code retrievable by the SDK for this campaign.
platformstringThe platform to which the app belongs
updatedAttimestampThe date and time in UTC at which the campaign was last updated.
appIdtimestampjusttrack's identifier for the app