#oraclelearner #oracleapex #sendmessage #whatsapp #youvibes #you-vibes #youvibe
How To Send Message from Oracle apex Application to whatsApp | send Message from oracle apex to WhatsApp.
►► How we will do:
1. Create WhatsApp API (app.chat-api.com)
2. Change Send Message Page.
3. Create two Items and a Button.
4. Create a Dynamic Action, here action Type is Exicute javascript Coad.
5. Check Message from web.whatsapp.com.
6. code below
---------------------------------------------------------------
var url ='https://eu155.chat-api.com/instance16...
var V_PHONE = $('#P33_PHONE').val();
var V_MESSAGE = $('#P33_MESSAGE').val();
var data = {
phone: V_PHONE,
body : V_MESSAGE
};
$.ajax(url, {
data: JSON.stringify(data),
contentType: 'application/json',
type: 'POST'
});