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

# Delete App

> Delete an app by client_id.

Deletes an app from the workspace and returns a deletion confirmation.

## Request

<ParamField header="Authorization" type="string" required>
  `Bearer <API_KEY>` from Console > Developers > Workspace API Keys.
</ParamField>

### Path parameters

<ParamField path="client_id" type="string" required>
  Client identifier of the app.
</ParamField>

## Response

<ResponseField name="deleted" type="boolean">
  Indicates whether the app was deleted.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE -H "Authorization: Bearer sk_workspace_test_..." \
    "https://sandbox.api.hopae.com/connect/v1/apps/abc123"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  { "deleted": true }
  ```
</ResponseExample>
