Get upload URL for uploading mobile app file. This URL has expiry time of 60 minutes. After that, it will be invalid and you need to get a new upload file URL.
Request
This request uses the GET method, which is used to retrieve a pre-signed URL to upload mobile application files to Katalon's cloud environment. A pre-signed URL allows you to upload files directly to cloud storage without requiring additional authentication during the upload process.
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.
The request data is provided as a JSON object.
Response
A successful request returns a JSON object containing the pre-signed URL and any additional metadata required for the upload. This URL is typically valid for a limited time and allows for a single upload operation.
See the following example:
{
"signedUrl": "[UPLOAD_URL]",
"storagePath": "708f61f0-80c9-4afb-b141-a4b90b07eed8"
}
Refer to the following table about the response body properties:
Property | Type | Description |
---|---|---|
signedUrl | String | A signed temporary URL for uploading the mobile app file. This URL is temporary and should be used within a specified time frame (e.g., 60 minutes). |
storagePath | String | A unique identifier for the location where the uploaded file will be stored. This value can be used to track or reference the uploaded app file. |
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!