Create session

Create a chat session for a chatbot specified by chatbot uuid

Endpoint

POST / api / v1 / chatbot / {uuid} / session / create

Authorization

Authorization: string Bearer <your_token>

Path

uuid string required

Request example

curl --location --request POST 'https://app.aichatbothub.com/api/v1/chatbot/{uuid}/session/create' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \

Response

created_at string

modified_at string

uuid string

Response example

{
  "created_at": "string",
  "modified_at": "string",
  "uuid": "string"
}

Last updated