Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.21 KB

MessageRequest.md

File metadata and controls

36 lines (27 loc) · 2.21 KB

MessageRequest

Properties

Name Type Description Notes
application_id str The ID of the Application your from number is associated with in the Bandwidth Phone Number Dashboard.
to List[str] The phone number(s) the message should be sent to in E164 format.
var_from str Either an alphanumeric sender ID or the sender's Bandwidth phone number in E.164 format, which must be hosted within Bandwidth and linked to the account that is generating the message. Alphanumeric Sender IDs can contain up to 11 characters, upper-case letters A-Z, lower-case letters a-z, numbers 0-9, space, hyphen -, plus +, underscore _ and ampersand &. Alphanumeric Sender IDs must contain at least one letter.
text str The contents of the text message. Must be 2048 characters or less. [optional]
media List[str] A list of URLs to include as media attachments as part of the message. Each URL can be at most 4096 characters. [optional]
tag str A custom string that will be included in callback events of the message. Max 1024 characters. [optional]
priority PriorityEnum [optional]
expiration datetime A string with the date/time value that the message will automatically expire by. This must be a valid RFC-3339 value, e.g., 2021-03-14T01:59:26Z or 2021-03-13T20:59:26-05:00. Must be a date-time in the future. Not supported on MMS. [optional]

Example

from bandwidth.models.message_request import MessageRequest

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

# convert the object into a dict
message_request_dict = message_request_instance.to_dict()
# create an instance of MessageRequest from a dict
message_request_from_dict = MessageRequest.from_dict(message_request_dict)

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