Calls
Intelligence
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Vector Knowledge Bases
Blocked Numbers
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Account
Organizations
- POSTCreate Organization
- DELDelete Organization
- GETGet Organization
- GETGet Organization Members
- GETGet Organization's Current Service Version
- GETList Organization's Service Versions
- PATCHUpdate Organization's Service Version
- PATCHUpdate Organization Members
- PATCHUpdate Organization Member Permissions
- PATCHUpdate Organization Properties
- GETGet User Organization Memberships
- DELLeave Organization
- GETGet Organization Billing Information
- GETGet Organization Billing Refill Information
SMS
Conversational Pathways
Create Pathway
Create a new conversational pathway
POST
/
v1
/
pathway
/
create
Copy
Ask AI
curl --request POST \
--url https://api.bland.ai/v1/pathway/create \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"name": "<string>",
"description": "<string>"
}'
Copy
Ask AI
{
"status": "success",
"pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}
Headers
Your API key for authentication.
Body
The name of the conversational pathway you want to create
A description of the conversational pathway you want to create
Response
Can be success
or error
.
A unique identifier for the pathway (present only if status is success
).
Copy
Ask AI
{
"status": "success",
"pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}
Copy
Ask AI
curl --request POST \
--url https://api.bland.ai/v1/pathway/create \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"name": "<string>",
"description": "<string>"
}'
Copy
Ask AI
{
"status": "success",
"pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}
Assistant
Responses are generated using AI and may contain mistakes.