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

# Delete Inbox

> Permanently soft-delete an agent inbox.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique ID of the inbox to delete.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.gork.email/v1/inboxes/inb_89a0b12" \
    -H "Authorization: Bearer gork_live_YOUR_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "id": "inb_89a0b12",
      "deleted": true
    }
  }
  ```
</ResponseExample>
