Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.45 KB

File metadata and controls

33 lines (24 loc) · 1.45 KB

Sms

The Sms command can be used to send an SMS message to a phone number during a phone call. International SMS is disabled by default.

Properties

Name Type Description Notes
to str 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).
var_from str 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 str Text contained in the message (maximum 160 characters).
notification_url str 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

from freeclimb.models.sms import Sms

# TODO update the JSON string below
json = "{}"
# create an instance of Sms from a JSON string
sms_instance = Sms.from_json(json)
# print the JSON string representation of the object
print(Sms.to_json())

# convert the object into a dict
sms_dict = sms_instance.to_dict()
# create an instance of Sms from a dict
sms_from_dict = Sms.from_dict(sms_dict)

[Back to Model list] [Back to API list] [Back to README]