Skip to content

Create a new web intake conversation

POST
/api/intake/conversations
curl --request POST \
--url https://example.com/api/intake/conversations \
--header 'Authorization: Bearer <token>'

Initialises Redis state for a new intake conversation and returns the conversation ID.

Successful Response

Media type application/json
ConversationResponse
object
conversation_id
required
Conversation Id
string
status
required
Status
string
Example generated
{
"conversation_id": "example",
"status": "example"
}