# Delete Mobile App

This endpoint is used to delete a mobile application from the database and storage. Below are the details related to the API usage.

***

### Endpoint Information

* **URL**: `<custom-env-url>/Testinium.RestApi/api/projects/mobileapp/{mobileAppId}`
* **Method**: `DELETE`
* **Authentication**: `Bearer Token` is required
* **Authorization**: Yes

***

### Request

#### Path Parameters

| Parameter     | Type   | Required | Description                                       |
| ------------- | ------ | -------- | ------------------------------------------------- |
| `mobileAppId` | `long` | Yes      | The unique ID of the mobile application to delete |

***

### Response

On successful deletion, the API returns an HTTP status code:

| HTTP Code | Status                  | Description                                        |
| --------- | ----------------------- | -------------------------------------------------- |
| `200`     | `OK`                    | The mobile application was deleted successfully.   |
| `404`     | `Not Found`             | The specified mobile application ID was not found. |
| `500`     | `Internal Server Error` | An unexpected error occurred on the server.        |

***

### Example Request

```bash
curl --location --request DELETE '<custom-env-url>/Testinium.RestApi/api/projects/mobileapp/{mobileAppId}' \
--header 'Authorization: Bearer <your_access_token>'
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://testinium.gitbook.io/testinium-enterprise/apis/enterprise-2.0/project/delete-mobile-app.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
