Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 927 Bytes

Sms.md

File metadata and controls

24 lines (18 loc) · 927 Bytes

Freeclimb::Sms

Properties

Name Type Description Notes
to String E.164 representation of the phone number to which the message will be sent. Must be within FreeClimb's service area and E.164 formatting (e.g., +18003608245).
from String E.164 representation of the phone number to use as the sender. This must be an incoming phone number you have purchased from FreeClimb.
text String Text contained in the message (maximum 160 characters).
notification_url String When the message changes status, this URL will be invoked using HTTP POST with the messageStatus parameters. This is a notification only; any PerCL returned will be ignored. [optional]

Example

require 'freeclimb'

instance = Freeclimb::Sms.new(
  to: null,
  from: null,
  text: null,
  notification_url: null
)