> ## 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.

# Attach Call

> Attach a call to an issue.

## Overview

Convenience over [Attach Resource](/api-v1/post/triage-issues-id-resources) for when you already have the `call_id`. Idempotent. Returns the full updated issue with `resource_count` incremented.

***

## 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` returned by [Send Call](/api-v1/post/calls).
</ParamField>

***

## Response

<ResponseField name="data" type="object">
  The updated issue. See [Create Issue](/api-v1/post/triage-issues#response) for the full field list.
</ResponseField>

<ResponseField name="errors" type="null | array">
  `null` on success. Returns 404 if the issue or the call cannot be found in your org.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": {
      "id": "cb27e5fb-b1f0-4b6f-9f10-13ac35617a87",
      "triage_id": "T-1042",
      "org_id": "1c5d7f1f-9f59-4d7f-a0a3-dd3a8b6e7f0e",
      "number": 1042,
      "title": "Agent skipped the verification step",
      "description": "",
      "status": "todo",
      "severity": "high",
      "source": "manual",
      "category": "Routing",
      "owner_id": null,
      "assignee_id": null,
      "author_id": "8e3d68e0-c2c5-49ea-b4a3-e7c9a1437f76",
      "external_link": null,
      "created_at": "2026-05-07T05:32:42.221Z",
      "updated_at": "2026-05-07T05:32:42.671Z",
      "last_activity_at": "2026-05-07T05:32:42.671Z",
      "resource_count": 1,
      "flag_count": 0,
      "relation_count": 0,
      "latest_agent_session": null,
      "is_processing": false,
      "has_unread_activity": true
    },
    "errors": null
  }
  ```
</ResponseExample>

***

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