API Using HTTP Request Whatsapp template exist

Hi,

I need a help to configure connection to whatsapp API.
Below is the template on how to connect to the whatsapp business .

POST
https://vjgx1r.api.infobip.com/whatsapp/1/message/template

POST https://vjgx1r.api.infobip.com/whatsapp/1/message/text
Jason
{
“from”: “441134960000”,
“to”: “441134960001”,
“messageId”: “a28dd97c-1ffb-4fcf-99f1-0b557ed381da”,
“content”: {
“text”: “Some text”
},
“callbackData”: “Callback data”,
“notifyUrl”: “https://www.example.com/whatsapp
}

========================================================================
and below template to send document

POST
https://vjgx1r.api.infobip.com/whatsapp/1/message/document

{
“from”: “441134960000”,
“to”: “441134960001”,
“messageId”: “a28dd97c-1ffb-4fcf-99f1-0b557ed381da”,
“content”: {
“mediaUrl”: “http://example.com/document
},
“callbackData”: “Callback data”,
“notifyUrl”: “https://www.example.com/whatsapp
}

I also have a template using python/java and cs but not sure how to configure it.

Regards
Jamuri
template using C.cs (3.2 KB)
Template Whatsapp.7z (2.3 KB)