A successful request to this endpoint deletes the specified mobile app by ID, along with all its versions.
Request
This request uses the DELETE method, which is used to remove one or more mobile apps based on the given app IDs.
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.
For the request body, the request data is provided as a JSON array containing objects with the following properties:
id
: The unique identifier of the mobile app to be deleted.purge
: A Boolean flag indicating whether to permanently delete the app. Iffalse
, the app is simply removed but may be recoverable. If true, the app is permanently deleted.
For example:
[
{
"id": "b3f2a3a0-0f5a-4e4a-8f4a-9b9b9b9b9b9b",
"purge": false
}
]
Response
The response will confirm the deletion of the app(s), along with their associated metadata if applicable.
See the following example:
{
"status": "success",
"message": "The app has been deleted successfully.",
"deletedIds": [
"b3f2a3a0-0f5a-4e4a-8f4a-9b9b9b9b9b9b"
]
}
Refer to the following table about the response body properties:
Property | Type | Description |
---|---|---|
status | String | The status of the deletion request (e.g., success , failure ). |
message | String | A detailed message about the deletion operation (e.g., success , errors ). |
deletedIds | Object | An array of the IDs of the apps that were successfully deleted. |
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!