> ## Documentation Index
> Fetch the complete documentation index at: https://morphik.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# delete_app

> Delete a cloud app by name

<Tabs>
  <Tab title="Sync">
    ```python theme={null}
    def delete_app(
        app_name: str,
    ) -> Dict[str, Any]
    ```
  </Tab>

  <Tab title="Async">
    ```python theme={null}
    async def delete_app(
        app_name: str,
    ) -> Dict[str, Any]
    ```
  </Tab>
</Tabs>

## Parameters

* `app_name` (str): Name of the app to delete

## Returns

* `Dict[str, Any]`: API response with delete status

## Examples

```python theme={null}
db.delete_app("staging-app")
```
