REST API
Get familiar with the Applivery API and explore the features
Get list of Builds of an App
This request is intended to get the list of available Builds of a given App
Definition:
GET https://api.applivery.io/v1/integrations/builds
- Authentication: required
- Headers:
- Content-Type: application/json
- Authorization: bearer <Your_App_Token>
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 |
CURL Request Example
curl 'https://api.applivery.io/v1/integrations/builds' -X GET -H 'Authorization: bearer xyz...xyz'
Responses
{ "status": true, "data": { "items": [ { "id": "string", "status": "pending", "tags": [], "versionName": "string", "application": "string", "changelog": "string", "info": {}, "size": "string", "os": "ios", "deployer": {}, "uploadedBy": "string", "createdAt": "string" } ], "totalDocs": 10, "limit": 5, "hasPrevPage": false, "hasNextPage": false, "page": 1, "totalPages": 1, "prevPage": null, "nextPage": 2 } }
{ "status": true, "data": { "error": 2001, "message": "Token not valid" } }
{ "status": true, "error": { "code": 4001, "message": "Entity not found" } }