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

Latest commit

 

History

History
21 lines (15 loc) · 321 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 321 Bytes

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