Sending SMS using Ileti Merkezi API - imona/tutorial GitHub Wiki

1. Service Info

ImonaCloud can send SMSs by service scripts using the APIs of Ileti Merkezi.
For more information about REST calls from ImonaCloud:
How to make RESTful web service calls

Ileti Merkezi accepts rest GET requests to send SMS to a given mobile phone number.

Rest endpoint URL: http://api.iletimerkezi.com/v1/send-sms/get/

2. Parameters

- username: User name of the ImonaCloud (or any other iletimerkezi) account. 5326830335 can be used for ImonaCloud.

- password: Password of that account. Iletimerkezi9602392 can be used for ImonaCloud.

- sender: Sender name, will be shown as sender from the receipent. IMONACLOUD can be used.

- receipents: Comma-seperated list of receipent mobile numbers.

- text: SMS body text.

3. Example Usage

Note: Phone number must be in 5XXXXXXXXX format. It should not start with 0 or +.

var map = ["username" : "5326830335", "password" : "Iletimerkezi9602392", "sender" : "IMONACLOUD", "receipents" : "5321234567", "text" : "Hello Mobile Phone!"];

callRestServiceViaGet("http://api.iletimerkezi.com/v1/send-sms/get/?username={username}&password={password}&sender={sender}&receipents={receipents}&text={text}", map);