curl --request POST \
--url https://dev.flextell.ai/api/v1/conversations/{id}/messages/media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form file='@example-file' \
--form 'message=<string>'{
"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/media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form file='@example-file' \
--form 'message=<string>'{
"success": "<string>",
"data": {
"status": "<string>",
"message_id": "<string>",
"conversation_id": "<string>"
}
}