Send SMS using Hoiio
Table of Contents
Note:
- This task is applicable only to Zoho Creator.
- Each time the hoiio.sms.send integration task is executed, it triggers an API request in the back-end. This call is deducted from the external calls limit available for the service from which the task is executed, based on your pricing plan.
- Only actual executions that receive a response (whether success or failure) are counted, not the number of times the task appears in the script. For example, if hoiio.sms.send integration task is placed inside a for each task that iterates five times, the number of external calls consumed will be five, even though the task appears only once in the script.
Overview
The hoiio.sms.send task is used to send messages through your Hoiio account using Deluge. For example, imagine you have a Zoho Creator application to track your inventory. You can use this task to send SMS notification to the specified phone number through your Hoiio account, whenever your inventory runs low on stock.
Syntax
<variable> = hoiio.sms.send(<hoiio_connection>, <to_number>, <message>);
where,
| Parameter | Data type | Description |
| <variable> | KEY-VALUE | is the variable which will hold the response returned by Hoiio. |
| <hoiio_connection> | TEXT | is the name of the Hoiio connection. |
| <to_number> | TEXT | is the phone number to which the message must be sent. The phone number must be in the format: +<country_code><phone_number> |
| <message> | TEXT | Contents of the message |
Send an SMS using Hoiio
The following snippet when executed sends the specified message to the specified number.
response = hoiio.sms.send("Hoiio", "+91XXXXXXXXXX", "Thank you for subscribing");
where,
| Param | Explanation |
| "Hoiio" | is the name of the Hoiio Connection |
| "+91XXXXXXXXXX" | is the phone number to which the message will be sent |
| "Thank you for subscribing" | is the message which will be sent |
| response | is response returned as KEY-VALUE by Hoiio |
Response Format
Following is a sample success response returned by Hoiio:
{"status":"Success"}