Skip to main content
GET
/
v1
/
triage
/
issues
/
{id}
/
affected
Get Affected Context
curl --request GET \
  --url https://api.bland.ai/v1/triage/issues/{id}/affected \
  --header 'authorization: <authorization>'
{
  "data": {
    "issue_id": "db49f7b8-3214-4cb2-9f80-9d04379a9b8a",
    "calls": [
      {
        "call_id": "95330a0e-d441-4586-96f8-28ea60677296",
        "title": "Sales demo flow",
        "started_at": "2026-04-30T14:11:08.000Z",
        "pathway_id": "8b2bb517-94d3-4cf6-9c7b-8c8ab9f8c4a1",
        "pathway_name": "Sales demo flow",
        "pathway_version_id": "f3ad7b24-8ab2-4f01-b04e-2c9f96d0d124",
        "version_number": 12,
        "version_label": "production",
        "persona_id": null,
        "persona_name": null
      }
    ],
    "pathways": [
      {
        "pathway_id": "8b2bb517-94d3-4cf6-9c7b-8c8ab9f8c4a1",
        "pathway_name": "Sales demo flow",
        "pathway_version_id": "f3ad7b24-8ab2-4f01-b04e-2c9f96d0d124",
        "version_number": 12,
        "version_label": "production",
        "call_count": 1,
        "call_ids": ["95330a0e-d441-4586-96f8-28ea60677296"]
      }
    ],
    "personas": []
  },
  "errors": null
}

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.

Overview

Derived rollup of every call attached to an issue, grouped by pathway and persona. Powers the dashboard’s Affected panel. Not paginated.

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

id
string
required
Internal UUID of the issue.

Response

data.issue_id
string
The issue this context belongs to.
data.calls
array
Every attached call, with the pathway and persona it ran against.
data.pathways
array
One entry per distinct pathway across the attached calls, with call_count and call_ids so you can deep-link.
data.personas
array
One entry per distinct persona, with call_count and call_ids.
errors
null | array
null on success. Returns 404 if the issue does not exist.
{
  "data": {
    "issue_id": "db49f7b8-3214-4cb2-9f80-9d04379a9b8a",
    "calls": [
      {
        "call_id": "95330a0e-d441-4586-96f8-28ea60677296",
        "title": "Sales demo flow",
        "started_at": "2026-04-30T14:11:08.000Z",
        "pathway_id": "8b2bb517-94d3-4cf6-9c7b-8c8ab9f8c4a1",
        "pathway_name": "Sales demo flow",
        "pathway_version_id": "f3ad7b24-8ab2-4f01-b04e-2c9f96d0d124",
        "version_number": 12,
        "version_label": "production",
        "persona_id": null,
        "persona_name": null
      }
    ],
    "pathways": [
      {
        "pathway_id": "8b2bb517-94d3-4cf6-9c7b-8c8ab9f8c4a1",
        "pathway_name": "Sales demo flow",
        "pathway_version_id": "f3ad7b24-8ab2-4f01-b04e-2c9f96d0d124",
        "version_number": 12,
        "version_label": "production",
        "call_count": 1,
        "call_ids": ["95330a0e-d441-4586-96f8-28ea60677296"]
      }
    ],
    "personas": []
  },
  "errors": null
}

Docs for agents: llms.txt