curl --request POST \
--url https://api.botly.com.br/api/v1/rest/messages/send-document \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"chatId": "1234567890",
"document": "https://example.com/document.pdf",
"caption": "Confira este documento importante!"
}
'