Skip to main content
POST
/
v1
/
triage
/
issues
/
{id}
/
agent-sessions
Create Agent Session
curl --request POST \
  --url https://api.bland.ai/v1/triage/issues/{id}/agent-sessions \
  --header 'authorization: <authorization>'
{
  "data": {
    "id": "0431f6ad-fdd3-4408-a6cc-909842d1db41",
    "agent_profile_id": "66720f06-f492-4ce6-a2f2-cd84fd54613e",
    "agent_name": "Norm",
    "status": "active"
  },
  "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

Creates a Norm session on an issue. Most callers can skip this, Prompt Norm creates a session implicitly on the first prompt. Use this only when you want to mount the session in your UI before the first prompt is sent.

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

id
string
required
Internal UUID of the issue.

Body Parameters

This endpoint takes no body parameters. Pass an empty body or {}.

Response

Returns 201 Created with a session summary.
data
object
errors
null | array
null on success. Returns 404 if the issue does not exist.
{
  "data": {
    "id": "0431f6ad-fdd3-4408-a6cc-909842d1db41",
    "agent_profile_id": "66720f06-f492-4ce6-a2f2-cd84fd54613e",
    "agent_name": "Norm",
    "status": "active"
  },
  "errors": null
}

Docs for agents: llms.txt