curl --request POST \
--url https://api.bland.ai/v1/triage/categories \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"name": "<string>"
}
'{
"data": {
"id": "5cc60a90-dfa3-4bd9-a8e7-5ee4dd1e1b87",
"org_id": "5fa6dc9e-ec4d-4f94-9e0e-21f6f6a1e8f1",
"name": "Voicemail Detection",
"created_at": "2026-05-07T05:32:42.086Z"
},
"errors": null
}
Create a custom issue category.
curl --request POST \
--url https://api.bland.ai/v1/triage/categories \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"name": "<string>"
}
'{
"data": {
"id": "5cc60a90-dfa3-4bd9-a8e7-5ee4dd1e1b87",
"org_id": "5fa6dc9e-ec4d-4f94-9e0e-21f6f6a1e8f1",
"name": "Voicemail Detection",
"created_at": "2026-05-07T05:32:42.086Z"
},
"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.
category is free-form on creation, so this endpoint is only needed when you want a category to appear in pickers before any issue uses it.
201 Created with the new category.
null on success.{
"data": {
"id": "5cc60a90-dfa3-4bd9-a8e7-5ee4dd1e1b87",
"org_id": "5fa6dc9e-ec4d-4f94-9e0e-21f6f6a1e8f1",
"name": "Voicemail Detection",
"created_at": "2026-05-07T05:32:42.086Z"
},
"errors": null
}
Was this page helpful?