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

# Delete Agent Identity

> Permanently delete an agent identity and unbind its associated mailbox.

### Path Parameters

<ParamField path="handle" type="string" required>
  The agent handle to remove (e.g. `eva`).
</ParamField>

### Response

Returns `204 No Content` on successful deletion.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.wirebox.sh/api/v1/identities/eva \
    -H "Authorization: Bearer $WIREBOX_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```text 204 No Content theme={null}
  (Empty response body)
  ```
</ResponseExample>
