Note
You are viewing the Apps API whose scope is limited to Apps. If you are looking for the full API spec, check the Organizations API .
This request is intended to get the details of a given published application.
Definition #
- Method: GET
- URL:
https://api.applivery.io/v1/integrations/distributions/{publishedApplicationId}
- Authentication, published application ID: required
- Headers:
Content-Type: application/json
Authorization: bearer <your_app_token>
Params #
Param | Type | Description |
---|---|---|
publishedApplicationId
|
String |
Published Application Id. E.g.: 552ae3cfcb5abfc58d733b81
|
Example request #
curl 'https://api.applivery.io/v1/integrations/distributions/552ae3cfcb5abfc58d733b81'
-X GET
-H 'Authorization: bearer xyz...xyz'
Responses #
Content type:
application/json
{
"status": true,
"data": {
"id": "string",
"updatedAt": "2019-08-24T14:15:22Z",
"createdAt": "2019-08-24T14:15:22Z",
"application": "string",
"applicationInfo": {
"id": "string",
"slug": "string",
"name": "string",
"picture": "string"
},
"slug": "string",
"filter": {
"type": "last",
"value": "string",
"ios": "string",
"android": "string",
"windows": "string",
"macos": "string",
"builds": [
{
"buildPlatform": "string",
"id": "string"
}
]
},
"security": "public",
"tags": [
"string"
],
"groups": [
[
"string"
]
],
"visibility": "active",
"showHistory": true,
"showDevInfo": true,
"distributionUrl": "string",
"terms": {
"active": true,
"text": "string"
}
}
}
Content type:
application/json
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}
Content type:
application/json
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}