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

# Delete quick reply

> Permanently delete an existing quick reply snippet and evict cache entries

Permanently remove a quick reply snippet from your organization's library. Deleting a snippet immediately evicts all organization snippet keys from the Redis cache.

***

### Authentication

This endpoint requires Bearer token authentication.

```http theme={null}
Authorization: Bearer <token>
```

| Header          | Type     | Required | Description                                     | Format           |
| :-------------- | :------- | :------- | :---------------------------------------------- | :--------------- |
| `Authorization` | `string` | **Yes**  | Scoped organization API key or Bearer JWT token | `Bearer <token>` |

***

### Path Parameters

<ParamField header="Authorization" type="string" required>
  Bearer token for authentication. Format: `Bearer <token>`.
</ParamField>

<ParamField path="quick_reply_id" type="string" required>
  Unique UUID identifier of the quick reply to delete.
</ParamField>

***

### Response Fields

<ResponseField name="message" type="string">
  Confirmation message string.
</ResponseField>

***

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.sayvy.ai/api/v1/quick-replies/c3f81e19-5d22-48a3-bb90-098716b2ef3a" \
    -H "Authorization: Bearer <token>"
  ```

  ```python Python theme={null}
  import requests

  url = "https://api.sayvy.ai/api/v1/quick-replies/c3f81e19-5d22-48a3-bb90-098716b2ef3a"
  headers = {
      "Authorization": "Bearer <token>"
  }

  response = requests.delete(url, headers=headers)
  print(response.status_code)
  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch("https://api.sayvy.ai/api/v1/quick-replies/c3f81e19-5d22-48a3-bb90-098716b2ef3a", {
    method: "DELETE",
    headers: {
      "Authorization": "Bearer <token>"
    }
  });

  const data = await response.json();
  console.log(data);
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "message": "Quick reply deleted successfully"
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "detail": "Quick reply not found"
  }
  ```
</ResponseExample>
