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

# Delete an OAuth app

> This endpoint deletes a OAuth app.

<Warning>This operation is permanent and not reversible.</Warning>

## Request parameters

<ParamField path="id" type="string" required>
  ID of the OAuth app.
</ParamField>

<RequestExample>
  ```shell theme={null}
  curl --request DELETE \
    --url https://api.sequin.io/v1/oauth-apps/8ff58ef0-d376-4ae8-b2e2-9f0206aa65b8 \
    --header 'Authorization: Bearer YOUR_API_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "deleted":true,
    "id":"8ff58ef0-d376-4ae8-b2e2-9f0206aa65b8"
  }
  ```
</ResponseExample>
