Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the Bearer. Example:Authorization: Bearer ********************
Token URL: /api/v1/auth/login
or
Body Params application/jsonRequired
{
"conversation_id": 1,
"content": "string",
"content_type": "text"
}
Request Code Samples
curl --location --request POST '/api/v1/messaging/send' \
--header 'Content-Type: application/json' \
--data-raw '{
"conversation_id": 1,
"content": "string",
"content_type": "text"
}'
Responses
{
"code": 0,
"message": "success",
"data": {
"id": 0
}
}
Modified at 2025-09-26 15:37:19