curl --request POST \
--url https://api.wachap.com/v1/whatsapp/messages/send \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"accountId": "account_xxx",
"to": "+33612345678",
"type": "text",
"content": "Bonjour depuis WaChap !"
}
}
'