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: CHANGES.md
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,29 @@ twilio-python Changelog
3
3
4
4
Here you can see the full list of changes between each twilio-python release.
5
5
6
+
[2023-11-17] Version 8.10.2
7
+
---------------------------
8
+
**Library - Chore**
9
+
-[PR #733](https://github.com/twilio/twilio-python/pull/733): bumping aiohttp from 3.8.5 to 3.8.6. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
10
+
11
+
**Api**
12
+
- Update documentation to reflect RiskCheck GA
13
+
14
+
**Messaging**
15
+
- Add tollfree edit_allowed and edit_reason fields
16
+
- Update Phone Number, Short Code, Alpha Sender, US A2P and Channel Sender documentation
17
+
18
+
**Taskrouter**
19
+
- Add container attribute to task_queue_bulk_real_time_statistics endpoint
20
+
21
+
**Trusthub**
22
+
- Rename did to tollfree_phone_number in compliance_tollfree_inquiry.json
23
+
- Add new optional field notification_email to compliance_tollfree_inquiry.json
24
+
25
+
**Verify**
26
+
- Add `Tags` optional parameter on Verification creation.
Copy file name to clipboardExpand all lines: twilio/rest/insights/v1/call/annotation.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ class ConnectivityIssue(object):
45
45
:ivar call_score: Specifies the Call Score, if available. This is of type integer. Use a range of 1-5 to indicate the call experience score, with the following mapping as a reference for rating the call [5: Excellent, 4: Good, 3 : Fair, 2 : Poor, 1: Bad].
46
46
:ivar comment: Specifies any comments pertaining to the call. Twilio does not treat this field as PII, so no PII should be included in comments.
47
47
:ivar incident: Incident or support ticket associated with this call. The `incident` property is of type string with a maximum character limit of 100. Twilio does not treat this field as PII, so no PII should be included in `incident`.
Copy file name to clipboardExpand all lines: twilio/rest/messaging/v1/service/channel_sender.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ class ChannelSenderInstance(InstanceResource):
34
34
:ivar country_code: The 2-character [ISO Country Code](https://www.iso.org/iso-3166-country-codes.html) of the number.
35
35
:ivar date_created: The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
36
36
:ivar date_updated: The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
37
-
:ivar url:
37
+
:ivar url: The absolute URL of the ChannelSender resource.
:param business_contact_last_name: The last name of the contact for the business or organization using the Tollfree number.
253
256
:param business_contact_email: The email address of the contact for the business or organization using the Tollfree number.
254
257
:param business_contact_phone: The phone number of the contact for the business or organization using the Tollfree number.
258
+
:param edit_reason: Describe why the verification is being edited. If the verification was rejected because of a technical issue, such as the website being down, and the issue has been resolved this parameter should be set to something similar to 'Website fixed'.
255
259
256
260
:returns: The updated TollfreeVerificationInstance
Asynchronous coroutine to update the TollfreeVerificationInstance
@@ -326,6 +332,7 @@ async def update_async(
326
332
:param business_contact_last_name: The last name of the contact for the business or organization using the Tollfree number.
327
333
:param business_contact_email: The email address of the contact for the business or organization using the Tollfree number.
328
334
:param business_contact_phone: The phone number of the contact for the business or organization using the Tollfree number.
335
+
:param edit_reason: Describe why the verification is being edited. If the verification was rejected because of a technical issue, such as the website being down, and the issue has been resolved this parameter should be set to something similar to 'Website fixed'.
329
336
330
337
:returns: The updated TollfreeVerificationInstance
:param business_contact_last_name: The last name of the contact for the business or organization using the Tollfree number.
489
498
:param business_contact_email: The email address of the contact for the business or organization using the Tollfree number.
490
499
:param business_contact_phone: The phone number of the contact for the business or organization using the Tollfree number.
500
+
:param edit_reason: Describe why the verification is being edited. If the verification was rejected because of a technical issue, such as the website being down, and the issue has been resolved this parameter should be set to something similar to 'Website fixed'.
491
501
492
502
:returns: The updated TollfreeVerificationInstance
Asynchronous coroutine to update the TollfreeVerificationInstance
@@ -574,6 +586,7 @@ async def update_async(
574
586
:param business_contact_last_name: The last name of the contact for the business or organization using the Tollfree number.
575
587
:param business_contact_email: The email address of the contact for the business or organization using the Tollfree number.
576
588
:param business_contact_phone: The phone number of the contact for the business or organization using the Tollfree number.
589
+
:param edit_reason: Describe why the verification is being edited. If the verification was rejected because of a technical issue, such as the website being down, and the issue has been resolved this parameter should be set to something similar to 'Website fixed'.
577
590
578
591
:returns: The updated TollfreeVerificationInstance
0 commit comments