curl --request POST \
--url https://dev.flextell.ai/api/v1/conversations/{id}/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"quoted_message_id": 123
}
'{
"success": "<string>",
"data": {
"status": "<string>",
"message_id": "<string>",
"conversation_id": "<string>"
}
}The access token received from the authorization server in the OAuth 2.0 flow.
Tenant identifier. Send the Tenant ID in the X-Tenant header to scope API requests to a specific tenant.
The conversation identifier
curl --request POST \
--url https://dev.flextell.ai/api/v1/conversations/{id}/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"quoted_message_id": 123
}
'{
"success": "<string>",
"data": {
"status": "<string>",
"message_id": "<string>",
"conversation_id": "<string>"
}
}