1.4.1 • Published 4 years ago

ut-port-infobip v1.4.1

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
4 years ago

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: ''
});