Create mobile app

Create a mobile native app with metadata in the Katalon TestCloud server.

Request

This request uses POST method, which is used to register a native mobile application in Katalon TestCloud, associating it with a specific organization. Registration enables the application to be managed and utilized within the organization's testing environment.

Replace {your_access_token} with your actual API access token. The Authorization header should follow the format: Bearer your_access_token. This token authenticates your request to the Katalon TestCloud API. See the following topic for more information: JSON Web Token Authentication.

You need to provide the following required parameters in the request body:

  • storagePath: The unique identifier for the application's storage location within Katalon's system. This is typically a UUID provided upon uploading the application.
  • fileName: The name of the application file, including its extension (e.g., app.apk for Android or app.ipa for iOS).
  • organizationId: The numeric ID of the organization to which the application should be associated.

Response

The response returns detailed information about a specific mobile app, including metadata, upload status, size, and more.

See the following example:

{
    "appId": "12345",
    "appName": "app.apk",
    "organizationId": 112,
    "status": "registered",
    "createdDate": "2025-02-11T15:12:21Z"
}

Refer to the following table about the response body properties:

PropertyTypeDescription
appIdIntegerThe app ID.
appNameStringThe app name.
organizationIdIntegerThe organization ID.
statusStringStatus (ex. registered).
createdDateIntegerDate, time when the app was created.

Try it!

  1. Enter the required (and optional, if applicable) fields below.
  2. Select the language in Language.
  3. Enter your user name or API credentials.
  4. Review your API call and click Try it!
Language
Credentials
Bearer
JWT
Click Try It! to start a request and see the response here!