Single or Bulk SMS Sending
With this API command, "Single or Bulk SMS Sending" process is provided.
METHOD |
POST |
URL |
< API URL >submit |
Content-Type |
application/json |
Parameters
Name |
Mandatory |
Description |
user_token |
Yes |
The "User Token" information you obtained. |
origin |
Optional |
Sender ID or phone number |
message |
Yes |
The body of the message |
numbers |
Yes |
Phone numbers (Must be in international format and array form.) |
Sample Request
{
"user_token": "< User Token >",
"origin": "+12025550160",
"message": "something write here...",
"numbers": [
"+447517663928",
"+12126712234"
]
}
Sample Output
{
"status":"successful",
"report_id":12345
}