POST
/conversations/{id}
curl \
--request POST 'https://ask71.tech/api/v1/conversations/{id}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"name":"string","bot_id":"string"}'
Request examples
{
"name": "string",
"bot_id": "string"
}
Response examples (200)
{
"data": {
"id": "string",
"name": "string",
"bot_id": "string",
"created_at": 42
}
}
Response examples (422)
{
"errors": {
"bot_id": [
"The selected bot id is invalid."
]
},
"message": "The selected bot id is invalid."
}