Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

bula21/mova21-smsSender

Repository files navigation

SMS Sender Interface

to start run:

npm run dev

Send sms example request

$params = @{
    "phonenumbers"="test";
    "message"="test";
}
$token = "logistik"
$url = "http://localhost:3000/api/sendApi"

Invoke-WebRequest -Uri $url -Method POST -Header @{ Authorization="Bearer " + $token } -Body $params