Get message capabilities
GET
https://app-dev.jollor.com/api/public/v1/messages/{message_id}/capabilities
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://app-dev.jollor.com/api/public/v1/messages/{{message_id}}/capabilities' \
--header 'Content-Type: application/json'
Response Response Example
{
"message_id": "6509c7912721d7bce3ac7c95",
"reply": {
"allowed": true
},
"max_reply_length": 2000,
"attachment_formats": {
"image/jpeg": {
"max_count": 0,
"max_width": 0,
"max_height": 0,
"max_size_bytes": 0
},
"image/png": {
"max_count": 0,
"max_width": 0,
"max_height": 0,
"max_size_bytes": 0
},
"video/mp4": {
"max_count": 0,
"max_width": 0,
"max_height": 0,
"max_size_bytes": 0
}
}
}
Request
Path Params
message_id
string
required
Example:
{{message_id}}
Header Params
Content-Type
string
required
Example:
application/json
Responses
Modified at 2023-12-05 07:09:44