Hello BotSailor team,
I'm a reseller of the platform and currently using the API from my WhiteLabel system. However, I'm facing a critical limitation: I’m unable to send media messages (such as photos and videos) without using message templates.
My requirement is to be able to send media messages within the 24-hour conversation window, without using templates, just as officially supported by WhatsApp’s Cloud API from Meta.
At the moment, I can only send text messages, which greatly limits my ability to build more complete integrations and automation systems.
Meta already allows media messages to be sent via HTTP requests without templates, as shown in the official documentation below:
🔗 Official Meta documentation – Sending Image Messages:
@developers.facebook.com.../image-messages
📄 JSON Example supported by Meta’s Cloud API:
curl '@graph.facebook.com.../messages' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-d '
{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "<WHATSAPP_USER_PHONE_NUMBER>",
"type": "image",
"image": {
"id": "<MEDIA_ID>",
"link": "<MEDIA_URL>",
"caption": "<MEDIA_CAPTION_TEXT>"
}
}'
📣 I kindly request this feature to be prioritized, as it’s essential for enabling full and effective integrations with the platform.