Whitelist IP address/es

To be able to access our API, we need to whitelist your IP's

Authentication

Authenticate with X-ApiKey in the header

Single SMS send-outs

For sending single SMS it's easiest to just use method SendMessageFromAlpha where you set sender, content on each recipient and trigger single calls

https://api.wiraya.com/api/SendMessageFromAlpha/json
{
"sender": "sender_name",
"recipient": "phone_number",
"message": "sms_content"
}

Batch send-outs

If sending batch SMS, you first need to create an SMS project and then add recipients to it. 

Create an SMS project

https://api.wiraya.com/api/CreateSMSProject/json
{
"sender": "sender_name",
"content":"sms_content"
"projectname":"sms_project_name"
}

Add recipients

https://api.wiraya.com/api/AddSmsRecipients/json
{
"smsprojectid":"sms_project_id",
"smsrecipients":[{
"phonenumber":"phone_number ",
,"extracolumns":["custom_value_1","custom_value_2"]}]


Here you can find some basic information regarding SMS 

Did this answer your question?