Skip to main content
POST
/
v1
/
pathway
/
create
Create Pathway
curl --request POST \
  --url https://api.bland.ai/v1/pathway/create \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "status": "success",
  "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}

Documentation Index

Fetch the complete documentation index at: https://blandai-calvin-pronunciationguide-web.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Headers

authorization
string
required
Your API key for authentication.

Body

name
string
required
The name of the conversational pathway you want to create
description
string
A description of the conversational pathway you want to create

Response

status
string
Can be success or error.
pathway_id
string
A unique identifier for the pathway (present only if status is success).
{
  "status": "success",
  "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}