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

# Delete sink consumer

Deletes a sink consumer by its ID or name.

## Request fields

<ParamField path="sink_id_or_name" type="string" required>
  The name or ID of the sink consumer to delete
</ParamField>

## Response fields

<ResponseField name="id" type="string">
  The unique identifier of the deleted sink consumer
</ResponseField>

<ResponseField name="deleted" type="boolean">
  Whether the sink consumer was successfully deleted
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.sequinstream.com/api/sinks/kafka-ids" \
    -H "Authorization: Bearer YOUR_API_TOKEN"
  ```

  ```json Response theme={null}
  {
    "id": "4ed2a8e5-47a7-4b51-9270-d2f4fdcb94fb",
    "deleted": true
  }
  ```
</RequestExample>
