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

# Delete Response

> Delete a response by ID.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://gateway.bud.studio/v1/responses/resp_abc123 \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "x-model-name: gpt-4"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "resp_abc123",
    "object": "response",
    "deleted": true
  }
  ```
</ResponseExample>

## Headers

| Parameter     | Type   | Required | Description                                      |
| ------------- | ------ | -------- | ------------------------------------------------ |
| Authorization | string | Yes      | Bearer authentication header                     |
| x-model-name  | string | No       | Model name for routing. Default: gpt-4-responses |

## Path Parameters

| Parameter    | Type   | Required | Description                      |
| ------------ | ------ | -------- | -------------------------------- |
| response\_id | string | Yes      | The ID of the response to delete |

## Supported Providers

<CardGroup cols={2}>
  <Card title="OpenAI" icon="openai">
    Full Responses API lifecycle management
  </Card>

  <Card title="Azure OpenAI" icon="microsoft">
    Enterprise-grade response management
  </Card>
</CardGroup>
