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
:param auto_creation_webhook_filters: The list of events, firing webhook event for this Conversation. Values can be any of the following: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onConversationUpdated`, `onConversationStateUpdated`, `onConversationRemoved`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`, `onDeliveryUpdated`
491
494
:param auto_creation_studio_flow_sid: For type `studio`, the studio flow SID where the webhook should be sent to.
492
495
:param auto_creation_studio_retry_count: For type `studio`, number of times to retry the webhook request
496
+
:param address_country: An ISO 3166-1 alpha-2n country code which the address belongs to. This is currently only applicable to short code addresses.
493
497
494
498
:returns: The created AddressConfigurationInstance
Asynchronously create the AddressConfigurationInstance
@@ -551,6 +557,7 @@ async def create_async(
551
557
:param auto_creation_webhook_filters: The list of events, firing webhook event for this Conversation. Values can be any of the following: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onConversationUpdated`, `onConversationStateUpdated`, `onConversationRemoved`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`, `onDeliveryUpdated`
552
558
:param auto_creation_studio_flow_sid: For type `studio`, the studio flow SID where the webhook should be sent to.
553
559
:param auto_creation_studio_retry_count: For type `studio`, number of times to retry the webhook request
560
+
:param address_country: An ISO 3166-1 alpha-2n country code which the address belongs to. This is currently only applicable to short code addresses.
554
561
555
562
:returns: The created AddressConfigurationInstance
The results are returned as a generator, so this operation is memory efficient.
681
684
685
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
686
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
687
+
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
682
688
:param limit: Upper limit for the number of records to return. stream()
683
689
guarantees to never return more than limit. Default is no limit
684
690
:param page_size: Number of records to fetch per request, when not set will use
@@ -689,12 +695,20 @@ def stream(
689
695
:returns: Generator that will yield up to limit results
The results are returned as a generator, so this operation is memory efficient.
706
720
721
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
722
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
723
+
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
707
724
:param limit: Upper limit for the number of records to return. stream()
708
725
guarantees to never return more than limit. Default is no limit
709
726
:param page_size: Number of records to fetch per request, when not set will use
@@ -714,12 +731,20 @@ async def stream_async(
714
731
:returns: Generator that will yield up to limit results
Unlike stream(), this operation is eager and will load `limit` records into
729
754
memory before returning.
730
755
756
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
757
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
758
+
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
731
759
:param limit: Upper limit for the number of records to return. list() guarantees
732
760
never to return more than limit. Default is no limit
733
761
:param page_size: Number of records to fetch per request, when not set will use
Unlike stream(), this operation is eager and will load `limit` records into
755
789
memory before returning.
756
790
791
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
792
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
793
+
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
757
794
:param limit: Upper limit for the number of records to return. list() guarantees
758
795
never to return more than limit. Default is no limit
759
796
:param page_size: Number of records to fetch per request, when not set will use
Retrieve a single page of ConversationInstance records from the API.
782
825
Request is executed immediately
783
826
827
+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
828
+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
829
+
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
784
830
:param page_token: PageToken provided by the API
785
831
:param page_number: Page Number, this value is simply for client state
786
832
:param page_size: Number of records to return, defaults to 50
Asynchronously retrieve a single page of ConversationInstance records from the API.
809
861
Request is executed immediately
810
862
863
+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
864
+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
865
+
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
811
866
:param page_token: PageToken provided by the API
812
867
:param page_number: Page Number, this value is simply for client state
813
868
:param page_size: Number of records to return, defaults to 50
0 commit comments