curl --request POST \
--url http://localhost:{port}/api/v1/messages/{messageId}/reply \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"content": "<string>",
"media": {
"type": "image",
"url": "<string>",
"mimetype": "<string>",
"data": "<string>",
"filename": "<string>",
"caption": "<string>"
},
"options": {
"mentions": [
"<string>"
],
"sendSeen": true,
"linkPreview": true,
"caption": "<string>"
}
}
'