App
List apps
Response
Name | Type | Description |
---|---|---|
id | int | Id of the app |
platformId | int | The app's platform; one of:
|
packageId | string | Application package id |
storeId | string | Application store id as used by the Apple or Google App Store |
name | string | Name of the app |
createdAt | string | The date of app creation |
updatedAt | string | The date of the latest app update |
Create App
Request
The general request to the Create App API looks like:
General parameters
Name | Type | Description |
---|---|---|
name | string | The name of the App to create |
platformId | int | The App's platform; one of:
|
storeId | string | Unique Id of the application in the store |
iconLink | string | Icon URL taken from store |
packageId | int | Id of package |
We validate the following constraints when creating an app:
the package id must be used only by you as a customer
the tuple (package id, platform id) must be unique
the tuple (name, platform id) must be unique
the store id must only be used once
Response
General fields
Name | Type | Description |
---|---|---|
Id | string | Unique Id of the App in justtrack |
name | string | The name of the App to create |
platformId | int | The App's platform; one of:
|
apiToken | string | The API token for the Network. |
| array of objects | For some Networks, you need to configure attributes when creating the App. This object shows the attributes you created. Refer to networkAttributes for more information. |
networkAttributes
networkAttributes
is an array of objects. Each object looks like this:
Name | Type | Description |
---|---|---|
id | int | The Network attribute Id. |
attribute | object | Holds details about the attribute, including the attribute name and the Network (vendor) to which to the attribute belongs. |
value | string | The value of the attribute |
createdAt | string | The date and time the Feature was created in the ISO 8601 format. The timezone is UTC. |
updatedAt | string | The date and time the Feature was last updated in the ISO 8601 format. The timezone is UTC. |
Last updated