Get Affected Context
curl --request GET \
--url https://api.bland.ai/v1/triage/issues/{id}/affected \
--header 'authorization: <authorization>'import requests
url = "https://api.bland.ai/v1/triage/issues/{id}/affected"
headers = {"authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {authorization: '<authorization>'}};
fetch('https://api.bland.ai/v1/triage/issues/{id}/affected', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bland.ai/v1/triage/issues/{id}/affected",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bland.ai/v1/triage/issues/{id}/affected"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.bland.ai/v1/triage/issues/{id}/affected")
.header("authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bland.ai/v1/triage/issues/{id}/affected")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"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
}
Resources
Get Affected Context
Calls, pathways, and personas affected by an issue.
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>'import requests
url = "https://api.bland.ai/v1/triage/issues/{id}/affected"
headers = {"authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {authorization: '<authorization>'}};
fetch('https://api.bland.ai/v1/triage/issues/{id}/affected', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bland.ai/v1/triage/issues/{id}/affected",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bland.ai/v1/triage/issues/{id}/affected"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.bland.ai/v1/triage/issues/{id}/affected")
.header("authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bland.ai/v1/triage/issues/{id}/affected")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"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
}
Overview
Derived rollup of every call attached to an issue, grouped by pathway and persona. Powers the dashboard’s Affected panel. Not paginated.Headers
string
required
Your API key for authentication.
Path Parameters
string
required
Internal UUID of the issue.
Response
string
The issue this context belongs to.
array
Every attached call, with the pathway and persona it ran against.
array
array
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
Was this page helpful?
⌘I