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
{
"message_id": 1,
"status": "sent"
}
Request Code Samples
curl --location --request POST '/api/v1/messaging/status' \
--header 'Content-Type: application/json' \
--data-raw '{
"message_id": 1,
"status": "sent"
}'
Responses
{
"code": 0,
"message": "success",
"data": {
"property1": "string",
"property2": "string"
}
}
Modified at 2025-09-26 15:37:19