Skip to main content

App

With the App API, you can:

  • View your list of apps
  • Upload bids

List apps

Return the list of apps for the current user's organization.

POST /management/v1/apps

Request

{
"page": {
"offset": integer,
"limit": integer,
}
}
NameTypeDescription
page.offsetuintNumber of apps to skip for this filter
page.limituintMaximum number of apps to return

Responses

200
{
"results": [
{
"createdAt": timestamp,
"id": integer,
"name": string,
"bundleId": string,
"platform": string,
"storeId": string,
"updatedAt": timestamp
}
]
}
NameTypeDescription
createdAttimestampThe date and time in UTC at which the app was created. This timestamp doesn't include the timezone.
iduintjusttrack's identifier for the app
namestringThe name of the app
bundleIdstringThe package of the app
platformstringThe app's platform; Possible values are: android, ios, and web
storeIdstringThe identifier of the app in the app store
updatedAttimestampThe date and time in UTC at which the app was last updated. This timestamp doesn't include the timezone.

Create app

Create an app.

POST /management/v1/app

Request

{
"name": string,
"platform": string,
"storeId": string,
"iconUrl": string,
"bundleId": string
}
NameTypeDescription
namestringThe name of the app
platformstringThe app's platform; Possible values are: android, ios, and web
storeIdstringThe identifier of the app in the app store
iconUrlstringIcon URL taken from store
bundleIdstringThe package of the app
info

We validate the following constraints when creating an app:

  • The bundle ID must be used only by you as a customer
  • The tuple (bundle ID, platform) must be unique
  • The tuple (name, platform) must be unique
  • The store ID must be unique

Responses

200
{
"createdAt": timestamp,
"id": integer,
"name": string,
"bundleId": string,
"platform": string,
"storeId": string,
"updatedAt": timestamp,
"apiKey": string
}
NameTypeDescription
createdAttimestampThe date and time in UTC at which the app was created. This timestamp doesn't include the timezone.
iduintjusttrack's identifier for the app
namestringThe name of the app
bundleIdstringThe package of the app
platformstringThe app's platform; Possible values are: android, ios, and web
storeIdstringThe identifier of the app in the app store
updatedAttimestampThe date and time in UTC at which the app was last updated. This timestamp doesn't include the timezone.
apiKeystringThe API key used to authenticate calls of the justtrack SDK. Use it during SDK setup.