twilio
Provides methods for working with Twilio service.
getLastSentApiSms
Retrieves last SMS message sent from API.
Parameters:
removeOnRead
Boolean
Specifies whether to delete the message after reading it.
timeout
Number
Timeout in milliseconds for waiting for the message to arrive.
notOlderThan
Number
optional
Retrieve message only if it arrived not before the given time (in ms). Default is 4 minutes.
Returns:
String
- SMS text.
getLastSms
Retrieves last SMS message.
Parameters:
removeOnRead
Boolean
Specifies whether to delete the message after reading it.
timeout
Number
Timeout in milliseconds for waiting for the message to arrive.
notOlderThan
Number
optional
Retrieve message only if it arrived not before the given time (in ms). Default is 4 minutes.
fromNumber
String
optional
From number to filter message
Returns:
String
- SMS text.
init
Set Twilio authentication details.
Parameters:
accountSid
String
Account SID.
authToken
String
Authentication token.
sendSms
Send an SMS.
** Usage example:**
Parameters:
from
String
Phone number to send from.
to
String
Phone number to send to.
message
String
Message to send.
Returns:
String
- Message SID.
Last updated