You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: twilio/rest/api/v2010/account/message/__init__.py
+8
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,7 @@ class UpdateStatus(object):
86
86
:ivar price_unit: The currency in which `price` is measured, in [ISO 4127](https://www.iso.org/iso/home/standards/currency_codes.htm) format (e.g. `usd`, `eur`, `jpy`).
87
87
:ivar api_version: The API version used to process the Message
88
88
:ivar subresource_uris: A list of related resources identified by their URIs relative to `https://api.twilio.com`
89
+
:ivar tags: A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message.
:param send_at: The time that Twilio will send the message. Must be in ISO 8601 format.
521
524
:param send_as_mms: If set to `true`, Twilio delivers the message as a single MMS message, regardless of the presence of media.
522
525
:param content_variables: For [Content Editor/API](https://www.twilio.com/docs/content) only: Key-value pairs of [Template variables](https://www.twilio.com/docs/content/using-variables-with-content-api) and their substitution values. `content_sid` parameter must also be provided. If values are not defined in the `content_variables` parameter, the [Template's default placeholder values](https://www.twilio.com/docs/content/content-api-resources#create-templates) are used.
526
+
:param tags: A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message. The object may contain up to 10 tags. Keys and values can each be up to 128 characters in length.
523
527
:param risk_check:
524
528
:param from_: The sender's Twilio phone number (in [E.164](https://en.wikipedia.org/wiki/E.164) format), [alphanumeric sender ID](https://www.twilio.com/docs/sms/send-messages#use-an-alphanumeric-sender-id), [Wireless SIM](https://www.twilio.com/docs/iot/wireless/programmable-wireless-send-machine-machine-sms-commands), [short code](https://www.twilio.com/docs/sms/api/short-code), or [channel address](https://www.twilio.com/docs/messaging/channels) (e.g., `whatsapp:+15554449999`). The value of the `from` parameter must be a sender that is hosted within Twilio and belong to the Account creating the Message. If you are using `messaging_service_sid`, this parameter can be empty (Twilio assigns a `from` value from the Messaging Service's Sender Pool) or you can provide a specific sender from your Sender Pool.
525
529
:param messaging_service_sid: The SID of the [Messaging Service](https://www.twilio.com/docs/messaging/services) you want to associate with the Message. When this parameter is provided and the `from` parameter is omitted, Twilio selects the optimal sender from the Messaging Service's Sender Pool. You may also provide a `from` parameter if you want to use a specific Sender from the Sender Pool.
:param send_at: The time that Twilio will send the message. Must be in ISO 8601 format.
618
624
:param send_as_mms: If set to `true`, Twilio delivers the message as a single MMS message, regardless of the presence of media.
619
625
:param content_variables: For [Content Editor/API](https://www.twilio.com/docs/content) only: Key-value pairs of [Template variables](https://www.twilio.com/docs/content/using-variables-with-content-api) and their substitution values. `content_sid` parameter must also be provided. If values are not defined in the `content_variables` parameter, the [Template's default placeholder values](https://www.twilio.com/docs/content/content-api-resources#create-templates) are used.
626
+
:param tags: A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message. The object may contain up to 10 tags. Keys and values can each be up to 128 characters in length.
620
627
:param risk_check:
621
628
:param from_: The sender's Twilio phone number (in [E.164](https://en.wikipedia.org/wiki/E.164) format), [alphanumeric sender ID](https://www.twilio.com/docs/sms/send-messages#use-an-alphanumeric-sender-id), [Wireless SIM](https://www.twilio.com/docs/iot/wireless/programmable-wireless-send-machine-machine-sms-commands), [short code](https://www.twilio.com/docs/sms/api/short-code), or [channel address](https://www.twilio.com/docs/messaging/channels) (e.g., `whatsapp:+15554449999`). The value of the `from` parameter must be a sender that is hosted within Twilio and belong to the Account creating the Message. If you are using `messaging_service_sid`, this parameter can be empty (Twilio assigns a `from` value from the Messaging Service's Sender Pool) or you can provide a specific sender from your Sender Pool.
622
629
:param messaging_service_sid: The SID of the [Messaging Service](https://www.twilio.com/docs/messaging/services) you want to associate with the Message. When this parameter is provided and the `from` parameter is omitted, Twilio selects the optimal sender from the Messaging Service's Sender Pool. You may also provide a `from` parameter if you want to use a specific Sender from the Sender Pool.
Copy file name to clipboardExpand all lines: twilio/rest/api/v2010/account/message/feedback.py
+6-6
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,11 @@ class Outcome(object):
28
28
UNCONFIRMED="unconfirmed"
29
29
30
30
"""
31
-
:ivar account_sid: The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the MessageFeedback resource.
32
-
:ivar message_sid: The SID of the Message resource for which the feedback was provided.
31
+
:ivar account_sid: The SID of the [Account](https://www.twilio.com/docs/iam/api/account) associated with this MessageFeedback resource.
32
+
:ivar message_sid: The SID of the Message resource associated with this MessageFeedback resource.
33
33
:ivar outcome:
34
-
:ivar date_created: The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
35
-
:ivar date_updated: The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
34
+
:ivar date_created: The date and time in GMT when this MessageFeedback resource was created, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
35
+
:ivar date_updated: The date and time in GMT when this MessageFeedback resource was last updated, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
36
36
:ivar uri: The URI of the resource, relative to `https://api.twilio.com`.
:param version: Version that contains the resource
80
-
:param account_sid: The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that will create the resource.
81
-
:param message_sid: The SID of the Message resource for which the feedback was provided.
80
+
:param account_sid: The SID of the [Account](https://www.twilio.com/docs/iam/api/account) associated with the Message resource for which to create MessageFeedback.
81
+
:param message_sid: The SID of the Message resource for which to create MessageFeedback.
Copy file name to clipboardExpand all lines: twilio/rest/messaging/v1/service/__init__.py
+7-7
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ class ScanMessageContent(object):
52
52
:ivar mms_converter: Whether to enable the [MMS Converter](https://www.twilio.com/docs/messaging/services#mms-converter) for messages sent through the Service instance.
53
53
:ivar smart_encoding: Whether to enable [Smart Encoding](https://www.twilio.com/docs/messaging/services#smart-encoding) for messages sent through the Service instance.
54
54
:ivar scan_message_content:
55
-
:ivar fallback_to_long_code: Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/messaging/services#fallback-to-long-code) for messages sent through the Service instance.
55
+
:ivar fallback_to_long_code: [OBSOLETE] Former feature used to fallback to longcode sender after certain short code message failures.
56
56
:ivar area_code_geomatch: Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/messaging/services#area-code-geomatch) on the Service Instance.
57
57
:ivar synchronous_validation: Reserved.
58
58
:ivar validity_period: How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`.
@@ -198,7 +198,7 @@ def update(
198
198
:param mms_converter: Whether to enable the [MMS Converter](https://www.twilio.com/docs/messaging/services#mms-converter) for messages sent through the Service instance.
199
199
:param smart_encoding: Whether to enable [Smart Encoding](https://www.twilio.com/docs/messaging/services#smart-encoding) for messages sent through the Service instance.
200
200
:param scan_message_content:
201
-
:param fallback_to_long_code: Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/messaging/services#fallback-to-long-code) for messages sent through the Service instance.
201
+
:param fallback_to_long_code: [OBSOLETE] Former feature used to fallback to longcode sender after certain short code message failures.
202
202
:param area_code_geomatch: Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/messaging/services#area-code-geomatch) on the Service Instance.
203
203
:param validity_period: How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`.
204
204
:param synchronous_validation: Reserved.
@@ -260,7 +260,7 @@ async def update_async(
260
260
:param mms_converter: Whether to enable the [MMS Converter](https://www.twilio.com/docs/messaging/services#mms-converter) for messages sent through the Service instance.
261
261
:param smart_encoding: Whether to enable [Smart Encoding](https://www.twilio.com/docs/messaging/services#smart-encoding) for messages sent through the Service instance.
262
262
:param scan_message_content:
263
-
:param fallback_to_long_code: Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/messaging/services#fallback-to-long-code) for messages sent through the Service instance.
263
+
:param fallback_to_long_code: [OBSOLETE] Former feature used to fallback to longcode sender after certain short code message failures.
264
264
:param area_code_geomatch: Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/messaging/services#area-code-geomatch) on the Service Instance.
265
265
:param validity_period: How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`.
266
266
:param synchronous_validation: Reserved.
@@ -459,7 +459,7 @@ def update(
459
459
:param mms_converter: Whether to enable the [MMS Converter](https://www.twilio.com/docs/messaging/services#mms-converter) for messages sent through the Service instance.
460
460
:param smart_encoding: Whether to enable [Smart Encoding](https://www.twilio.com/docs/messaging/services#smart-encoding) for messages sent through the Service instance.
461
461
:param scan_message_content:
462
-
:param fallback_to_long_code: Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/messaging/services#fallback-to-long-code) for messages sent through the Service instance.
462
+
:param fallback_to_long_code: [OBSOLETE] Former feature used to fallback to longcode sender after certain short code message failures.
463
463
:param area_code_geomatch: Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/messaging/services#area-code-geomatch) on the Service Instance.
464
464
:param validity_period: How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`.
465
465
:param synchronous_validation: Reserved.
@@ -531,7 +531,7 @@ async def update_async(
531
531
:param mms_converter: Whether to enable the [MMS Converter](https://www.twilio.com/docs/messaging/services#mms-converter) for messages sent through the Service instance.
532
532
:param smart_encoding: Whether to enable [Smart Encoding](https://www.twilio.com/docs/messaging/services#smart-encoding) for messages sent through the Service instance.
533
533
:param scan_message_content:
534
-
:param fallback_to_long_code: Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/messaging/services#fallback-to-long-code) for messages sent through the Service instance.
534
+
:param fallback_to_long_code: [OBSOLETE] Former feature used to fallback to longcode sender after certain short code message failures.
535
535
:param area_code_geomatch: Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/messaging/services#area-code-geomatch) on the Service Instance.
536
536
:param validity_period: How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`.
537
537
:param synchronous_validation: Reserved.
@@ -715,7 +715,7 @@ def create(
715
715
:param mms_converter: Whether to enable the [MMS Converter](https://www.twilio.com/docs/messaging/services#mms-converter) for messages sent through the Service instance.
716
716
:param smart_encoding: Whether to enable [Smart Encoding](https://www.twilio.com/docs/messaging/services#smart-encoding) for messages sent through the Service instance.
717
717
:param scan_message_content:
718
-
:param fallback_to_long_code: Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/messaging/services#fallback-to-long-code) for messages sent through the Service instance.
718
+
:param fallback_to_long_code: [OBSOLETE] Former feature used to fallback to longcode sender after certain short code message failures.
719
719
:param area_code_geomatch: Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/messaging/services#area-code-geomatch) on the Service Instance.
720
720
:param validity_period: How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`.
721
721
:param synchronous_validation: Reserved.
@@ -787,7 +787,7 @@ async def create_async(
787
787
:param mms_converter: Whether to enable the [MMS Converter](https://www.twilio.com/docs/messaging/services#mms-converter) for messages sent through the Service instance.
788
788
:param smart_encoding: Whether to enable [Smart Encoding](https://www.twilio.com/docs/messaging/services#smart-encoding) for messages sent through the Service instance.
789
789
:param scan_message_content:
790
-
:param fallback_to_long_code: Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/messaging/services#fallback-to-long-code) for messages sent through the Service instance.
790
+
:param fallback_to_long_code: [OBSOLETE] Former feature used to fallback to longcode sender after certain short code message failures.
791
791
:param area_code_geomatch: Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/messaging/services#area-code-geomatch) on the Service Instance.
792
792
:param validity_period: How long, in seconds, messages sent from the Service are valid. Can be an integer from `1` to `14,400`.
0 commit comments