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

# Detach Call

> Detach a call from an issue.

## Overview

Convenience over [Remove Resource](/api-v1/delete/triage-issues-id-resources-resource-link-id) for when you have the `call_id` rather than the resource link ID. The underlying call is unaffected.

***

## Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

***

## Path Parameters

<ParamField path="id" type="string" required>
  Internal UUID of the issue.
</ParamField>

<ParamField path="call_id" type="string" required>
  The `call_id` of the call to detach.
</ParamField>

***

## Response

Returns `204 No Content` on success with an empty body.

Returns 404 if the issue does not exist or if the call is not currently attached to this issue.

<ResponseExample>
  ```http No Content theme={null}
  HTTP/1.1 204 No Content
  ```

  ```json Not Found theme={null}
  {
    "data": null,
    "errors": [
      { "error": "not_found", "message": "Resource not found" }
    ]
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
