> ## 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 a credential

> This endpoint deletes a credential.

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

## Request parameters

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

<RequestExample>
  ```shell theme={null}
  curl --request DELETE \
    --url https://api.sequin.io/v1/credentials/c906b4a4-0cda-4f46-bd80-255f570c195d \
    --header 'Authorization: Bearer YOUR_API_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": "c906b4a4-0cda-4f46-bd80-255f570c195d",
    "deleted": true
  }
  ```
</ResponseExample>
