Pathway Chat
Pathway Chat
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
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Batches
SMS
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
Pathway Chat
Pathway Chat
Get conversation history for a pathway chat.
GET
/
v1
/
pathway
/
chat
/
{id}
curl --request GET \
--url https://us.api.bland.ai/v1/pathway/chat/{id} \
--header 'authorization: <authorization>'
{
data: [
{
"role": "user",
"content": "message"
},
... // more messages
]
}
Headers
Your API key for authentication.
Path Parameters
The chat ID created from the /pathway/chat/create endpoint.
Response
List of errors or null.
Message objects for the conversation history.
{
data: [
{
"role": "user",
"content": "message"
},
... // more messages
]
}
curl --request GET \
--url https://us.api.bland.ai/v1/pathway/chat/{id} \
--header 'authorization: <authorization>'
{
data: [
{
"role": "user",
"content": "message"
},
... // more messages
]
}