REST API
Get familiar with the Applivery API and explore the features
Get Build details
This request is intended to get the details of given Build
Definition:
GET https://api.applivery.io/v1/integrations/builds/{buildId}
- Authentication: required
- Headers:
- Content-Type: application/json
- Authorization: bearer <Your_App_Token>
Param | Type | Description |
---|---|---|
buildId |
String |
Build Id. E.g.: 552ae3cfcb5abfc58d733b81 |
CURL Request Example
curl 'https://api.applivery.io/v1/integrations/builds/5ce3035c93a095001b02505c' -X GET -H 'Authorization: bearer xyz...xyz'
Responses
{ "status": true, "data": { "id": "string", "status": "pending", "tags": [], "versionName": "string", "application": "string", "changelog": "string", "info": { "icon": "string", "android": { "targetSdkVersion": "string", "minSDKVersion": "string", "packageName": "string", "platformBuildVersionName": "string", "platformBuildVersionCode": "string", "versionName": "string", "versionCode": "string", "icon": "string" }, "ios": { "plist": { "CFBundleDisplayName": "string", "CFBundleSupportedPlatforms": [ "string" ], "MinimumOSVersion": "string", "CFBundleIdentifier": "string", "CFBundleShortVersionString": "string", "CFBundleVersion": "string", "CFBundleName": "string", "CFBundleIcons": [ "string" ] }, "mobileprovision": { "TeamIdentifier": "string", "ProvisionsAllDevices": true, "TeamName": "string", "ProvisionedDevices": "string" } } }, "size": "string", "os": "ios", "deployer": { "name": "string", "info": { "git_branch": "string" }, "build_trigger_timestamp": "string", "build_url": "string", "app_url": "string", "git_repository_url": "string", "build_number": "string", "commit": "string", "tag": "string" }, "uploadedBy": "string", "createdAt": "string" } }
{ "status": true, "error": { "code": 2001, "message": "Token not valid" } }
{ "status": true, "error": { "code": 4001, "message": "Entity not found" } }