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
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,23 @@ twilio-python Changelog
3
3
4
4
Here you can see the full list of changes between each twilio-python release.
5
5
6
+
[2025-09-18] Version 9.8.1
7
+
--------------------------
8
+
**Api**
9
+
- Add `date_created` property to media resource and date_created filtering parameters for read action
10
+
- Updated the Recordings Resource `channels` property to clarify channels = # of channels in the recording resource and how to specify the # of channels in recording download
11
+
12
+
**Intelligence**
13
+
- Add encryption_credential_sid field in transcripts and services in v2
14
+
15
+
**Trusthub**
16
+
- Remove beta feature flag for all TH APIs
17
+
- Remove beta feature flag for ComplianceInquiries API to support OneConsole traffic
Copy file name to clipboardExpand all lines: twilio/rest/api/v2010/account/available_phone_number_country/local.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,7 @@ def stream(
152
152
The results are returned as a generator, so this operation is memory efficient.
153
153
154
154
:param int area_code: The area code of the phone numbers to read. Applies to only phone numbers in the US and Canada.
155
-
:param str contains: The pattern on which to match phone numbers. Valid characters are `*`, `0-9`, `a-z`, and `A-Z`. The `*` character matches any single digit. For examples, see [Example 2](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-number-pattern) and [Example 3](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-character-pattern). If specified, this value must have at least two characters.
155
+
:param str contains: Matching pattern to identify phone numbers. This pattern can be between 2 and 16 characters long and allows all digits (0-9) and all non-diacritic latin alphabet letters (a-z, A-Z). It accepts four meta-characters: `*`, `%`, `+`, `$`. The `*` and `%` meta-characters can appear multiple times in the pattern. To match wildcards at the beginning or end of the pattern, use `*` to match any single character or `%` to match a sequence of characters. If you use the wildcard patterns, it must include at least two non-meta-characters. To match the beginning of a pattern, start the pattern with `+`. To match the end of the pattern, append the pattern with `$`. These meta-characters can't be adjacent to each other.
156
156
:param bool sms_enabled: Whether the phone numbers can receive text messages. Can be: `true` or `false`.
157
157
:param bool mms_enabled: Whether the phone numbers can receive MMS messages. Can be: `true` or `false`.
158
158
:param bool voice_enabled: Whether the phone numbers can receive calls. Can be: `true` or `false`.
@@ -233,7 +233,7 @@ async def stream_async(
233
233
The results are returned as a generator, so this operation is memory efficient.
234
234
235
235
:param int area_code: The area code of the phone numbers to read. Applies to only phone numbers in the US and Canada.
236
-
:param str contains: The pattern on which to match phone numbers. Valid characters are `*`, `0-9`, `a-z`, and `A-Z`. The `*` character matches any single digit. For examples, see [Example 2](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-number-pattern) and [Example 3](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-character-pattern). If specified, this value must have at least two characters.
236
+
:param str contains: Matching pattern to identify phone numbers. This pattern can be between 2 and 16 characters long and allows all digits (0-9) and all non-diacritic latin alphabet letters (a-z, A-Z). It accepts four meta-characters: `*`, `%`, `+`, `$`. The `*` and `%` meta-characters can appear multiple times in the pattern. To match wildcards at the beginning or end of the pattern, use `*` to match any single character or `%` to match a sequence of characters. If you use the wildcard patterns, it must include at least two non-meta-characters. To match the beginning of a pattern, start the pattern with `+`. To match the end of the pattern, append the pattern with `$`. These meta-characters can't be adjacent to each other.
237
237
:param bool sms_enabled: Whether the phone numbers can receive text messages. Can be: `true` or `false`.
238
238
:param bool mms_enabled: Whether the phone numbers can receive MMS messages. Can be: `true` or `false`.
239
239
:param bool voice_enabled: Whether the phone numbers can receive calls. Can be: `true` or `false`.
@@ -313,7 +313,7 @@ def list(
313
313
memory before returning.
314
314
315
315
:param int area_code: The area code of the phone numbers to read. Applies to only phone numbers in the US and Canada.
316
-
:param str contains: The pattern on which to match phone numbers. Valid characters are `*`, `0-9`, `a-z`, and `A-Z`. The `*` character matches any single digit. For examples, see [Example 2](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-number-pattern) and [Example 3](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-character-pattern). If specified, this value must have at least two characters.
316
+
:param str contains: Matching pattern to identify phone numbers. This pattern can be between 2 and 16 characters long and allows all digits (0-9) and all non-diacritic latin alphabet letters (a-z, A-Z). It accepts four meta-characters: `*`, `%`, `+`, `$`. The `*` and `%` meta-characters can appear multiple times in the pattern. To match wildcards at the beginning or end of the pattern, use `*` to match any single character or `%` to match a sequence of characters. If you use the wildcard patterns, it must include at least two non-meta-characters. To match the beginning of a pattern, start the pattern with `+`. To match the end of the pattern, append the pattern with `$`. These meta-characters can't be adjacent to each other.
317
317
:param bool sms_enabled: Whether the phone numbers can receive text messages. Can be: `true` or `false`.
318
318
:param bool mms_enabled: Whether the phone numbers can receive MMS messages. Can be: `true` or `false`.
319
319
:param bool voice_enabled: Whether the phone numbers can receive calls. Can be: `true` or `false`.
@@ -393,7 +393,7 @@ async def list_async(
393
393
memory before returning.
394
394
395
395
:param int area_code: The area code of the phone numbers to read. Applies to only phone numbers in the US and Canada.
396
-
:param str contains: The pattern on which to match phone numbers. Valid characters are `*`, `0-9`, `a-z`, and `A-Z`. The `*` character matches any single digit. For examples, see [Example 2](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-number-pattern) and [Example 3](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-character-pattern). If specified, this value must have at least two characters.
396
+
:param str contains: Matching pattern to identify phone numbers. This pattern can be between 2 and 16 characters long and allows all digits (0-9) and all non-diacritic latin alphabet letters (a-z, A-Z). It accepts four meta-characters: `*`, `%`, `+`, `$`. The `*` and `%` meta-characters can appear multiple times in the pattern. To match wildcards at the beginning or end of the pattern, use `*` to match any single character or `%` to match a sequence of characters. If you use the wildcard patterns, it must include at least two non-meta-characters. To match the beginning of a pattern, start the pattern with `+`. To match the end of the pattern, append the pattern with `$`. These meta-characters can't be adjacent to each other.
397
397
:param bool sms_enabled: Whether the phone numbers can receive text messages. Can be: `true` or `false`.
398
398
:param bool mms_enabled: Whether the phone numbers can receive MMS messages. Can be: `true` or `false`.
399
399
:param bool voice_enabled: Whether the phone numbers can receive calls. Can be: `true` or `false`.
@@ -474,7 +474,7 @@ def page(
474
474
Request is executed immediately
475
475
476
476
:param area_code: The area code of the phone numbers to read. Applies to only phone numbers in the US and Canada.
477
-
:param contains: The pattern on which to match phone numbers. Valid characters are `*`, `0-9`, `a-z`, and `A-Z`. The `*` character matches any single digit. For examples, see [Example 2](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-number-pattern) and [Example 3](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-character-pattern). If specified, this value must have at least two characters.
477
+
:param contains: Matching pattern to identify phone numbers. This pattern can be between 2 and 16 characters long and allows all digits (0-9) and all non-diacritic latin alphabet letters (a-z, A-Z). It accepts four meta-characters: `*`, `%`, `+`, `$`. The `*` and `%` meta-characters can appear multiple times in the pattern. To match wildcards at the beginning or end of the pattern, use `*` to match any single character or `%` to match a sequence of characters. If you use the wildcard patterns, it must include at least two non-meta-characters. To match the beginning of a pattern, start the pattern with `+`. To match the end of the pattern, append the pattern with `$`. These meta-characters can't be adjacent to each other.
478
478
:param sms_enabled: Whether the phone numbers can receive text messages. Can be: `true` or `false`.
479
479
:param mms_enabled: Whether the phone numbers can receive MMS messages. Can be: `true` or `false`.
480
480
:param voice_enabled: Whether the phone numbers can receive calls. Can be: `true` or `false`.
@@ -567,7 +567,7 @@ async def page_async(
567
567
Request is executed immediately
568
568
569
569
:param area_code: The area code of the phone numbers to read. Applies to only phone numbers in the US and Canada.
570
-
:param contains: The pattern on which to match phone numbers. Valid characters are `*`, `0-9`, `a-z`, and `A-Z`. The `*` character matches any single digit. For examples, see [Example 2](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-number-pattern) and [Example 3](https://www.twilio.com/docs/phone-numbers/api/availablephonenumberlocal-resource?code-sample=code-find-phone-numbers-by-character-pattern). If specified, this value must have at least two characters.
570
+
:param contains: Matching pattern to identify phone numbers. This pattern can be between 2 and 16 characters long and allows all digits (0-9) and all non-diacritic latin alphabet letters (a-z, A-Z). It accepts four meta-characters: `*`, `%`, `+`, `$`. The `*` and `%` meta-characters can appear multiple times in the pattern. To match wildcards at the beginning or end of the pattern, use `*` to match any single character or `%` to match a sequence of characters. If you use the wildcard patterns, it must include at least two non-meta-characters. To match the beginning of a pattern, start the pattern with `+`. To match the end of the pattern, append the pattern with `$`. These meta-characters can't be adjacent to each other.
571
571
:param sms_enabled: Whether the phone numbers can receive text messages. Can be: `true` or `false`.
572
572
:param mms_enabled: Whether the phone numbers can receive MMS messages. Can be: `true` or `false`.
573
573
:param voice_enabled: Whether the phone numbers can receive calls. Can be: `true` or `false`.
0 commit comments