GET
https://api.applivery.io/v1/organizations/{organizationId}/apps/{applicationId}
curl -X GET "https://api.applivery.io/v1/organizations/{organizationId}/apps/{applicationId}" \
-H "Authorization: Bearer <YOUR_API_KEY>"const response = await fetch("https://api.applivery.io/v1/organizations/{organizationId}/apps/{applicationId}", {
method: "GET",
headers: {
Authorization: "Bearer <YOUR_API_KEY>",
},
});
const data = await response.json();import requests
response = requests.get(
"https://api.applivery.io/v1/organizations/{organizationId}/apps/{applicationId}",
headers={"Authorization": "Bearer <YOUR_API_KEY>"},
)
data = response.json()Request
Send your API key in the request header
authorization
Example:
Authorization: Bearer <token>
organizationId
string
required
applicationId
string
required
Responses
200 Response
application/json
status
boolean
optional
data
object
optional
id
string
optional
name
string
optional
slug
string
optional
sdk
object
optional
ios
object
optional
android
object
optional
notifications
object
optional
newBuildNotifyCollaborators
boolean
optional
newBuildNotifyEmployees
boolean
optional
newBuildNotifyOtpUsers
boolean
optional
newBuildMessage
string
optional
newFeedbackNotifyCollaborators
boolean
optional
description
string
optional
oss
array [string]
optional
buildPlatforms
array [string]
optional
security
object
optional
role
string
optional
configuration
object
optional
storageProvider
object
optional
emmJwtSignature
string
optional
notificationLanguage
string
optional
buildRetentionDays
number
optional
buildsRetainedPerPublication
number
optional
retentionApplied
object
optional
maxBillingBuildRetentionDays
number
optional
buildsRetainedPerPublication
number
optional
lastBuildProcessedDate
string
optional
picture
string
optional
pictureSource
string
optional
organization
string
optional
counts
object
optional
metadata
object
optional
defaultScripts
object
optional
preInstall
string
optional
postInstall
string
optional
audit
string
optional
enforce
string
optional
runner
string
optional
createdBy
string
optional
createdAt
string
optional
updatedAt
string
optional
{
"status": true,
"data": {
"id": "507f1f77bcf86cd799439011",
"name": "Enterprise Mobile Banking App",
"slug": "mobile-banking-app",
"sdk": {
"ios": {
"ota": true,
"forceUpdate": false,
"minVersion": "2.5.0",
"forceAuth": true,
"detected": {
"sdkVersion": "3.2.1",
"capabilities": [
"ota",
"auth",
"feedback"
],
"integrationValid": true
},
"lastBuildId": "507f1f77bcf86cd799439014",
"lastBuildVersion": "3.1.2"
},
"android": {
"ota": true,
"forceUpdate": false,
"minVersion": "2.5.0",
"forceAuth": true,
"detected": {
"sdkVersion": "3.2.1",
"capabilities": [
"ota",
"auth",
"feedback"
],
"integrationValid": true
},
"lastBuildId": "507f1f77bcf86cd799439014",
"lastBuildVersion": "3.1.2"
}
},
"notifications": {
"newBuildNotifyCollaborators": true,
"newBuildNotifyEmployees": false,
"newBuildNotifyOtpUsers": false,
"newBuildMessage": "This release includes critical security patches and new features for enhanced mobile banking. Please update immediately to ensure continued access to your accounts.",
"newFeedbackNotifyCollaborators": true
},
"description": "A secure mobile banking application designed for enterprise customers, featuring biometric authentication, real-time transaction monitoring, and seamless integration with our core banking systems.",
"oss": [
"ios",
"android"
],
"buildPlatforms": [
"ios",
"android"
],
"security": {
"role": "org.admin"
},
"configuration": {
"storageProvider": {
"id": "507f1f77bcf86cd799439012",
"name": "AWS S3 Production Bucket",
"region": "eu-west-1",
"config": "production-app-storage",
"provider": "aws-s3"
},
"emmJwtSignature": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkVudGVycHJpc2UgQXBwIn0.signature",
"notificationLanguage": "en",
"buildRetentionDays": 90,
"buildsRetainedPerPublication": 5
},
"retentionApplied": {
"maxBillingBuildRetentionDays": 0,
"buildsRetainedPerPublication": 0
},
"lastBuildProcessedDate": "2026-02-03T10: 30: 00.000Z",
"picture": "https://cdn.applivery.com/apps/507f1f77bcf86cd799439011/icon.png",
"pictureSource": "build",
"organization": "507f1f77bcf86cd799439013",
"counts": {
"totalBuilds": 127,
"activeInstalls": 3421,
"feedbackCount": 45
},
"metadata": {
"costCenter": "IT-2024",
"projectCode": "MOBILE-BANK-001",
"complianceLevel": "PCI-DSS"
},
"defaultScripts": {
"preInstall": "string",
"postInstall": "string",
"audit": "string",
"enforce": "string",
"runner": "string"
},
"createdBy": "507f1f77bcf86cd799439016",
"createdAt": "2025-01-15T09: 00: 00.000Z",
"updatedAt": "2026-02-03T14: 25: 00.000Z"
}
}
401 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}
404 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}