With BeepMate, you can send messages and files to your own WhatsApp or to a WhatsApp group using both GET and POST through https://beepmate.io/send
endpoint.
This allows you to automate notifications to WhatsApp.
GET
(or through a URL). The URL looks like this:
https://beepmate.io/send?key=YOUR_KEY&id=YOUR_ID&msg=MESSAGE
https://beepmate.io/send?key=MyKey&id=19291111111&msg=Hello%20World
%20
to represent spaces in the message (or any other URL encoding characters if needed).
POST
request with form data. The easiest way to do this is using curl, which is available on most systems.
curl -k -X POST -F "file=@/path/to/yourfile.pdf" -F "key=YOUR_KEY" -F "id=YOUR_ID" "https://beepmate.io/send"
curl -k -X POST -F "file=@c:\somefile.pdf" -F "key=MyKey" -F "id=19291111111" "https://beepmate.io/send"