post https://example.com/apps
A successful request to this endpoint creates a mobile app with the specified metadata.
Request
This request uses the GET method, which is used to retrieve detailed information about a specific mobile app.
For basic authorization, replace this with your username and password (or API key) in the header request in the username:password
or username:api_key
format. Your user credentials are combined to form a Base64 encoded string.
You need to provide the following required query parameters:
id
: The unique identifier of the mobile app. This can be found in your system or provided by the app's management interface.
Response
The response returns detailed information about a specific mobile app, including metadata, upload status, size, and more.
See the following example:
{
"id": "b3f3c0a0-0f5a-4f4a-8f4a-0b9e4b0f4a0f",
"organizationId": "1234",
"name": "Katalon Demo App",
"platform": "ANDROID",
"universalAppId": "com.katalon.app.ios, com.katalon.app.android",
"status": "NEW",
"size": 123456,
"description": "This is a demo app",
"storagePath": "string",
"reason": "App size is too big",
"uploadedDate": "2022-03-10T16:15:50.000Z",
"metadata": {
"appId": "com.katalon.app",
"identifier": "com.katalon.app",
"name": "Katalon Demo App",
"version": "1.0.0",
"versionCode": "1",
"minSdk": 11,
"targetSdk": 15
},
"createdDate": "2022-03-10T12:15:50.000Z",
"updatedDate": "2022-03-10T12:15:50.000Z",
"fileName": "KatalonDemoApp.apk"
}
Refer to the following table about the response body properties:
Property | Type | Description |
---|---|---|
id | String | The unique identifier for the mobile app. |
organizationId | String | The identifier for the organization that owns the app. |
name | String | The name of the mobile app. |
platform | String | The platform of the mobile app (e.g., ANDROID , IOS ). |
universalAppId | String | A comma-separated list of identifiers for the app on different platforms (e.g., Android and iOS). |
status | String | The current status of the app (e.g., NEW , UPLOADED ). |
size | Integer | The size of the mobile app file in bytes. |
description | String | A description of the app. |
storagePath | String | The path where the app file is stored. |
reason | String | The reason for the app's current status (e.g., App size is too big ). |
uploadedDate | String | The date and time when the app was uploaded. |
metadata | Object | Metadata for the app, containing detailed version and SDK information. |
createdDate | String | The date and time when the app was created in the system. |
updatedDate | String | The date and time when the app was last updated in the system. |
fileName | String | The name of the app file (e.g., KatalonDemoApp.apk ). |
Try it!
- Enter the required (and optional, if applicable) fields below.
- Select the language in Language.
- Enter your user name or API credentials.
- Review your API call and click Try it!