Skip to content

softwaregroup-bg/ut-port-infobip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ut-port-infobip

Sending SMS with infobip system.

In order to use the module you need to add the following configuration

"infobip": {
        "logLevel": "error",
        "url": "https://yg66g.api.infobip.com",
        "uri": "/sms/2/text/single",
        "method": "POST",
        "raw": {
            "headers": {
                "Authorization": "App 123...."
            }
        }
    }

and then call it with

await importMethod('infobip.send')({
    from: '',
    to: '',
    text: ''
});