WhatsApp Integration with Oracle APEX
1) Get API URL From Register WhatsApp API Provider
2) In my case https://app.chat-api.com/
3) Login with your account or register for new account
4) Add new Instance
5) Give Instance Name and Reboot
8) Go to Oracle APEX , go to sql Workshop and create procedure to call the API
Mobile No = Should Start with Country Code
begin
whatsapp_send (
l_mobileno => '968XXXXX',
l_message => 'Hello'
);
end;
Comments
Post a Comment