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 list of available Builds of a given App.
Definition #
- Method: GET
- URL:
https://api.applivery.io/v1/integrations/builds
- Authentication: required
- Headers:
Content-Type: application/json
Authorization: bearer <your_app_token>
Params #
Param | Type | Description |
---|---|---|
versionName
|
String |
Given build version Name (slug). i.e: RC-1
|
status
|
String |
Build status (slug). i.e: pending , in_progress , processed , error
|
os
|
String |
Operative System. i.e: ios , android
|
page
|
String | Page number |
limit
|
String | Limit number of results |
Example request #
curl 'https://api.applivery.io/v1/integrations/builds'
-X GET
-H 'Authorization: bearer xyz...xyz'
Responses #
200 - Success
401 - Unauthorized
404 - Not found
Content type:
application/json
{
"status": true,
"data": {
"items": [
{
"id": "string",
"status": "pending",
"tags": [...],
"versionName": "string",
"application": "string",
"applicationInfo": {...},
"changelog": "string",
"info": {...},
"size": 0,
"processTime": 0,
"queuedTime": 0,
"versionCode": "string",
"error": "string",
"errorCode": "string",
"os": "ios",
"deployer": {...},
"uploadedBy": {...},
"originalExtension": "string",
"storageProvider": {...},
"hasEmmJson": true,
"updatedAt": "string",
"createdAt": "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"
}
}