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

# Delete Assistant

> Delete an assistant by its ID via the ContactSwing API.

### Authorizations

<ParamField header="Authorization" type="string" required>
  Enter your ContactSwing JWT Bearer token.
</ParamField>

### Path Parameters

<ParamField path="assistant_id" type="string" required>
  Unique assistant identifier from ContactSwing dashboard.
</ParamField>

### Response

**200 OK** - Assistant deleted successfully

<ResponseField name="ctx_id" type="string">
  Request context ID
</ResponseField>

<ResponseField name="data" type="object">
  Deletion confirmation details
</ResponseField>

<ResponseField name="message" type="string">
  "Request processed successfully"
</ResponseField>

**404 Not Found** - Assistant not found

### Example Request

```bash theme={null}
curl -X DELETE 'https://prod-contactswing-fastapi-962560522883.us-central1.run.app/v2/_assistants/YOUR_ASSISTANT_ID' \
  -H 'Authorization: Bearer YOUR_JWT_TOKEN'
```
