diff --git a/airbyte-integrations/connectors/source-zendesk-talk/README.md b/airbyte-integrations/connectors/source-zendesk-talk/README.md
index a414b1323f5e..45f10e19d37a 100644
--- a/airbyte-integrations/connectors/source-zendesk-talk/README.md
+++ b/airbyte-integrations/connectors/source-zendesk-talk/README.md
@@ -49,7 +49,7 @@ and place them into `secrets/config.json`.
 python main.py spec
 python main.py check --config secrets/config.json
 python main.py discover --config secrets/config.json
-python main.py read --config secrets/config.json --catalog sample_files/configured_catalog.json
+python main.py read --config secrets/config.json --catalog integration_tests/configured_catalog.json
 ```
 
 ### Locally running the connector docker image
@@ -57,7 +57,7 @@ python main.py read --config secrets/config.json --catalog sample_files/configur
 #### Build
 First, make sure you build the latest Docker image:
 ```
-docker build . -t airbyte/zendesk-talk:dev
+docker build . -t airbyte/source-zendesk-talk:dev 
 ```
 
 You can also build the connector image via Gradle:
@@ -79,7 +79,7 @@ docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/sample_files:/sample_files
    Make sure to familiarize yourself with [pytest test discovery](https://docs.pytest.org/en/latest/goodpractices.html#test-discovery) to know how your test files and methods should be named.
 First install test dependencies into your virtual environment:
 ```
-pip install .[tests]
+pip install .'[tests]'
 ```
 ### Unit Tests
 To run unit tests locally, from the connector directory run:
diff --git a/airbyte-integrations/connectors/source-zendesk-talk/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zendesk-talk/acceptance-test-config.yml
index a4cb208d9cd7..56e2156d43c6 100644
--- a/airbyte-integrations/connectors/source-zendesk-talk/acceptance-test-config.yml
+++ b/airbyte-integrations/connectors/source-zendesk-talk/acceptance-test-config.yml
@@ -2,32 +2,52 @@
 # for more information about how to configure these tests
 # intentionally left out explicit configured_catalog.json to test all streams from discovery
 connector_image: airbyte/source-zendesk-talk:dev
-tests:
+test_strictness_level: "high"
+acceptance_tests:
   spec:
-    - spec_path: "source_zendesk_talk/spec.json"
+    tests:
+      - spec_path: "source_zendesk_talk/spec.json"
   connection:
-    - config_path: "secrets/config.json"
-      status: "succeed"
-    - config_path: "integration_tests/invalid_config.json"
-      status: "failed"
-    - config_path: "secrets/config_old.json"
-      status: "succeed"
+    tests:
+      - config_path: "secrets/config.json"
+        status: "succeed"
+      - config_path: "integration_tests/invalid_config.json"
+        status: "failed"
+      - config_path: "secrets/config_old.json"
+        status: "succeed"
   discovery:
-    - config_path: "secrets/config.json"
-      backward_compatibility_tests_config:
-        disable_for_version: "0.1.3"
-    - config_path: "secrets/config_old.json"
-      backward_compatibility_tests_config:
-        disable_for_version: "0.1.3"
+    tests:
+      - config_path: "secrets/config.json"
+        backward_compatibility_tests_config:
+          disable_for_version: "0.1.3"
+      - config_path: "secrets/config_old.json"
+        backward_compatibility_tests_config:
+          disable_for_version: "0.1.3"
   basic_read:
-    - config_path: "secrets/config.json"
+    tests:
+      - config_path: "secrets/config.json"
+        expect_records:
+          path: "integration_tests/expected_records.jsonl"
+          extra_fields: no
+          exact_order: no
+          extra_records: yes
+        empty_streams:
+          - name: "account_overview"
+            bypass_reason: "The objects can mutate quite often."
+          - name: "agents_overview"
+            bypass_reason: "The objects can mutate quite often."
+          - name: "current_queue_activity"
+            bypass_reason: "The objects can mutate quite often."
   incremental:
-    - config_path: "secrets/config.json"
-      future_state_path: "integration_tests/abnormal_state.json"
+    tests:
+      - config_path: "secrets/config.json"
+        future_state:
+          future_state_path: "integration_tests/abnormal_state.json"
   full_refresh:
-    - config_path: "secrets/config.json"
-      configured_catalog_path: "integration_tests/configured_catalog.json"
-      ignored_fields:
-        account_overview: ["current_timestamp"]
-        agents_overview: ["current_timestamp"]
-        current_queue_activity: ["current_timestamp"]
+    tests:
+      - config_path: "secrets/config.json"
+        configured_catalog_path: "integration_tests/configured_catalog.json"
+        ignored_fields:
+          account_overview: ["current_timestamp"]
+          agents_overview: ["current_timestamp"]
+          current_queue_activity: ["current_timestamp"]
diff --git a/airbyte-integrations/connectors/source-zendesk-talk/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-zendesk-talk/integration_tests/abnormal_state.json
index 6c8e657de064..26862a32c0ef 100644
--- a/airbyte-integrations/connectors/source-zendesk-talk/integration_tests/abnormal_state.json
+++ b/airbyte-integrations/connectors/source-zendesk-talk/integration_tests/abnormal_state.json
@@ -1,8 +1,20 @@
-{
-  "calls": {
-    "updated_at": "2121-01-01T00:00:00Z"
+[
+  {
+    "type": "STREAM",
+    "stream": {
+      "stream_state": {
+        "updated_at": "2121-01-01T00:00:00Z"
+      },
+      "stream_descriptor": { "name": "calls" }
+    }
   },
-  "call_legs": {
-    "updated_at": "2121-01-01T00:00:00Z"
+  {
+    "type": "STREAM",
+    "stream": {
+      "stream_state": {
+        "updated_at": "2121-01-01T00:00:00Z"
+      },
+      "stream_descriptor": { "name": "call_legs" }
+    }
   }
-}
+]
diff --git a/airbyte-integrations/connectors/source-zendesk-talk/integration_tests/expected_records.jsonl b/airbyte-integrations/connectors/source-zendesk-talk/integration_tests/expected_records.jsonl
new file mode 100644
index 000000000000..5e1deb1cca93
--- /dev/null
+++ b/airbyte-integrations/connectors/source-zendesk-talk/integration_tests/expected_records.jsonl
@@ -0,0 +1,81 @@
+{"stream": "addresses", "data": {"id": 360000047935, "name": "Fake Zendesk 1001", "street": "1019 Market Street", "zip": "94103", "city": "San Francisco", "state": null, "province": "California", "country_code": "US", "provider_reference": "AD89734a096af9bab5eb8d364a00e03859"}, "emitted_at": 1674159463524}
+{"stream": "addresses", "data": {"id": 360000049316, "name": "Fake Zendesk 1000", "street": "1019 Market Street", "zip": "94103", "city": "San Francisco", "state": null, "province": "California", "country_code": "US", "provider_reference": "AD15e4b6ac73c4e727e2b00c29963d8e06"}, "emitted_at": 1674159463524}
+{"stream": "addresses", "data": {"id": 360000049296, "name": "Fake Zendesk 999", "street": "1019 Market Street", "zip": "94103", "city": "San Francisco", "state": null, "province": "California", "country_code": "US", "provider_reference": "ADad90fc569206d6cbe5f5a6f160c01516"}, "emitted_at": 1674159463525}
+{"stream": "addresses", "data": {"id": 360000047915, "name": "Fake Zendesk 998", "street": "1019 Market Street", "zip": "94103", "city": "San Francisco", "state": null, "province": "California", "country_code": "US", "provider_reference": "ADa89d87601b4f38b45ca172ba36bc4c36"}, "emitted_at": 1674159463525}
+{"stream": "addresses", "data": {"id": 360000049276, "name": "Fake Zendesk 997", "street": "1019 Market Street", "zip": "94103", "city": "San Francisco", "state": null, "province": "California", "country_code": "US", "provider_reference": "AD1b03f6250ae793c562f9290a47404e5b"}, "emitted_at": 1674159463525}
+{"stream": "agents_activity", "data": {"name": "Team Airbyte", "agent_id": 360786799676, "via": "client", "avatar_url": "https://d3v-airbyte.zendesk.com/images/2016/default-avatar-80.png", "forwarding_number": null, "average_talk_time": 0, "calls_accepted": 0, "calls_denied": 0, "calls_missed": 0, "online_time": 0, "available_time": 0, "total_call_duration": 0, "total_talk_time": 0, "total_wrap_up_time": 0, "away_time": 0, "call_status": null, "agent_state": "offline", "transfers_only_time": 0, "average_wrap_up_time": 0, "accepted_transfers": 0, "started_transfers": 0, "calls_put_on_hold": 0, "average_hold_time": 0, "total_hold_time": 0, "started_third_party_conferences": 0, "accepted_third_party_conferences": 0}, "emitted_at": 1674159464163}
+{"stream": "calls", "data": {"id": 360088814475, "created_at": "2021-04-01T13:42:47Z", "updated_at": "2021-04-01T14:23:15Z", "agent_id": null, "call_charge": "0.003", "consultation_time": 0, "completion_status": "failed", "customer_id": null, "customer_requested_voicemail": false, "direction": "outbound", "duration": 18, "exceeded_queue_wait_time": null, "hold_time": 0, "minutes_billed": 1, "outside_business_hours": null, "phone_number_id": 360000121575, "phone_number": "+12059531462", "ticket_id": null, "time_to_answer": null, "voicemail": false, "wait_time": 0, "wrap_up_time": 0, "ivr_time_spent": null, "ivr_hops": null, "ivr_destination_group_name": null, "talk_time": null, "ivr_routed_to": null, "callback": null, "callback_source": null, "default_group": false, "ivr_action": null, "overflowed": false, "overflowed_to": null, "recording_control_interactions": 0, "recording_time": 0, "not_recording_time": 0, "call_recording_consent": "always", "call_recording_consent_action": null, "call_recording_consent_keypress": null, "call_group_id": null, "call_channel": null, "quality_issues": ["silence"], "line": "+12059531462", "line_id": 360000121575, "line_type": "phone"}, "emitted_at": 1674159472100}
+{"stream": "calls", "data": {"id": 360120314196, "created_at": "2021-10-20T15:16:31Z", "updated_at": "2021-10-20T15:56:54Z", "agent_id": null, "call_charge": "0.003", "consultation_time": 0, "completion_status": "completed", "customer_id": null, "customer_requested_voicemail": false, "direction": "outbound", "duration": 8, "exceeded_queue_wait_time": false, "hold_time": 0, "minutes_billed": 1, "outside_business_hours": false, "phone_number_id": 360000121575, "phone_number": "+12059531462", "ticket_id": null, "time_to_answer": null, "voicemail": false, "wait_time": 0, "wrap_up_time": 0, "ivr_time_spent": null, "ivr_hops": null, "ivr_destination_group_name": null, "talk_time": 0, "ivr_routed_to": null, "callback": false, "callback_source": null, "default_group": false, "ivr_action": null, "overflowed": false, "overflowed_to": null, "recording_control_interactions": 0, "recording_time": 0, "not_recording_time": 0, "call_recording_consent": "always", "call_recording_consent_action": null, "call_recording_consent_keypress": null, "call_group_id": null, "call_channel": null, "quality_issues": ["none"], "line": "+12059531462", "line_id": 360000121575, "line_type": "phone"}, "emitted_at": 1674159472101}
+{"stream": "calls", "data": {"id": 360121169675, "created_at": "2021-10-20T15:16:42Z", "updated_at": "2021-10-20T15:57:03Z", "agent_id": null, "call_charge": "0.003", "consultation_time": 0, "completion_status": "completed", "customer_id": null, "customer_requested_voicemail": false, "direction": "outbound", "duration": 7, "exceeded_queue_wait_time": false, "hold_time": 0, "minutes_billed": 1, "outside_business_hours": false, "phone_number_id": 360000121575, "phone_number": "+12059531462", "ticket_id": null, "time_to_answer": null, "voicemail": false, "wait_time": 0, "wrap_up_time": 0, "ivr_time_spent": null, "ivr_hops": null, "ivr_destination_group_name": null, "talk_time": 0, "ivr_routed_to": null, "callback": false, "callback_source": null, "default_group": false, "ivr_action": null, "overflowed": false, "overflowed_to": null, "recording_control_interactions": 0, "recording_time": 0, "not_recording_time": 0, "call_recording_consent": "always", "call_recording_consent_action": null, "call_recording_consent_keypress": null, "call_group_id": null, "call_channel": null, "quality_issues": ["none"], "line": "+12059531462", "line_id": 360000121575, "line_type": "phone"}, "emitted_at": 1674159472101}
+{"stream": "calls", "data": {"id": 360121166995, "created_at": "2021-10-20T13:22:25Z", "updated_at": "2021-10-20T16:22:34Z", "agent_id": null, "call_charge": "0.003", "consultation_time": 0, "completion_status": "completed", "customer_id": null, "customer_requested_voicemail": false, "direction": "outbound", "duration": 6, "exceeded_queue_wait_time": false, "hold_time": 0, "minutes_billed": 1, "outside_business_hours": false, "phone_number_id": 360000121575, "phone_number": "+12059531462", "ticket_id": null, "time_to_answer": null, "voicemail": false, "wait_time": 0, "wrap_up_time": 0, "ivr_time_spent": null, "ivr_hops": null, "ivr_destination_group_name": null, "talk_time": 0, "ivr_routed_to": null, "callback": false, "callback_source": null, "default_group": false, "ivr_action": null, "overflowed": false, "overflowed_to": null, "recording_control_interactions": 0, "recording_time": 0, "not_recording_time": 0, "call_recording_consent": "always", "call_recording_consent_action": null, "call_recording_consent_keypress": null, "call_group_id": null, "call_channel": null, "quality_issues": ["none"], "line": "+12059531462", "line_id": 360000121575, "line_type": "phone"}, "emitted_at": 1674159472102}
+{"stream": "calls", "data": {"id": 360120313416, "created_at": "2021-10-20T14:34:26Z", "updated_at": "2021-10-20T17:34:36Z", "agent_id": null, "call_charge": "0.003", "consultation_time": 0, "completion_status": "completed", "customer_id": null, "customer_requested_voicemail": false, "direction": "outbound", "duration": 349, "exceeded_queue_wait_time": false, "hold_time": 0, "minutes_billed": 6, "outside_business_hours": false, "phone_number_id": 360000121575, "phone_number": "+12059531462", "ticket_id": null, "time_to_answer": null, "voicemail": false, "wait_time": 0, "wrap_up_time": 0, "ivr_time_spent": null, "ivr_hops": null, "ivr_destination_group_name": null, "talk_time": 0, "ivr_routed_to": null, "callback": false, "callback_source": null, "default_group": false, "ivr_action": null, "overflowed": false, "overflowed_to": null, "recording_control_interactions": 0, "recording_time": 0, "not_recording_time": 0, "call_recording_consent": "always", "call_recording_consent_action": null, "call_recording_consent_keypress": null, "call_group_id": null, "call_channel": null, "quality_issues": ["none"], "line": "+12059531462", "line_id": 360000121575, "line_type": "phone"}, "emitted_at": 1674159472102}
+{"stream": "calls", "data": {"id": 360121168815, "created_at": "2021-10-20T14:40:05Z", "updated_at": "2021-10-20T17:40:25Z", "agent_id": null, "call_charge": "0.003", "consultation_time": 0, "completion_status": "completed", "customer_id": null, "customer_requested_voicemail": false, "direction": "outbound", "duration": 17, "exceeded_queue_wait_time": false, "hold_time": 0, "minutes_billed": 1, "outside_business_hours": false, "phone_number_id": 360000121575, "phone_number": "+12059531462", "ticket_id": null, "time_to_answer": null, "voicemail": false, "wait_time": 0, "wrap_up_time": 0, "ivr_time_spent": null, "ivr_hops": null, "ivr_destination_group_name": null, "talk_time": 0, "ivr_routed_to": null, "callback": false, "callback_source": null, "default_group": false, "ivr_action": null, "overflowed": false, "overflowed_to": null, "recording_control_interactions": 0, "recording_time": 0, "not_recording_time": 0, "call_recording_consent": "always", "call_recording_consent_action": null, "call_recording_consent_keypress": null, "call_group_id": null, "call_channel": null, "quality_issues": ["none"], "line": "+12059531462", "line_id": 360000121575, "line_type": "phone"}, "emitted_at": 1674159472102}
+{"stream": "calls", "data": {"id": 360120313656, "created_at": "2021-10-20T14:49:50Z", "updated_at": "2021-10-20T17:50:02Z", "agent_id": null, "call_charge": "0.003", "consultation_time": 0, "completion_status": "completed", "customer_id": null, "customer_requested_voicemail": false, "direction": "outbound", "duration": 5, "exceeded_queue_wait_time": false, "hold_time": 0, "minutes_billed": 1, "outside_business_hours": false, "phone_number_id": 360000121575, "phone_number": "+12059531462", "ticket_id": null, "time_to_answer": null, "voicemail": false, "wait_time": 0, "wrap_up_time": 0, "ivr_time_spent": null, "ivr_hops": null, "ivr_destination_group_name": null, "talk_time": 0, "ivr_routed_to": null, "callback": false, "callback_source": null, "default_group": false, "ivr_action": null, "overflowed": false, "overflowed_to": null, "recording_control_interactions": 0, "recording_time": 0, "not_recording_time": 0, "call_recording_consent": "always", "call_recording_consent_action": null, "call_recording_consent_keypress": null, "call_group_id": null, "call_channel": null, "quality_issues": ["none"], "line": "+12059531462", "line_id": 360000121575, "line_type": "phone"}, "emitted_at": 1674159472103}
+{"stream": "calls", "data": {"id": 360120313676, "created_at": "2021-10-20T14:50:08Z", "updated_at": "2021-10-20T17:50:16Z", "agent_id": null, "call_charge": "0.003", "consultation_time": 0, "completion_status": "completed", "customer_id": null, "customer_requested_voicemail": false, "direction": "outbound", "duration": 6, "exceeded_queue_wait_time": false, "hold_time": 0, "minutes_billed": 1, "outside_business_hours": false, "phone_number_id": 360000121575, "phone_number": "+12059531462", "ticket_id": null, "time_to_answer": null, "voicemail": false, "wait_time": 0, "wrap_up_time": 0, "ivr_time_spent": null, "ivr_hops": null, "ivr_destination_group_name": null, "talk_time": 0, "ivr_routed_to": null, "callback": false, "callback_source": null, "default_group": false, "ivr_action": null, "overflowed": false, "overflowed_to": null, "recording_control_interactions": 0, "recording_time": 0, "not_recording_time": 0, "call_recording_consent": "always", "call_recording_consent_action": null, "call_recording_consent_keypress": null, "call_group_id": null, "call_channel": null, "quality_issues": ["none"], "line": "+12059531462", "line_id": 360000121575, "line_type": "phone"}, "emitted_at": 1674159472103}
+{"stream": "call_legs", "data": {"id": 360167085115, "created_at": "2021-04-01T13:42:47Z", "updated_at": "2021-04-01T14:23:14Z", "agent_id": 360786799676, "user_id": 0, "duration": 18, "hold_time": 0, "wrap_up_time": 0, "available_via": "browser", "forwarded_to": null, "consultation_from": null, "transferred_from": null, "transferred_to": null, "minutes_billed": 1, "call_charge": "0.003", "completion_status": "completed", "consultation_time": null, "talk_time": 0, "consultation_to": null, "conference_time": null, "conference_from": null, "conference_to": null, "quality_issues": ["silence"], "call_id": 360088814475, "type": "agent"}, "emitted_at": 1674159475493}
+{"stream": "call_legs", "data": {"id": 360222253536, "created_at": "2021-10-20T13:22:27Z", "updated_at": "2021-10-20T14:02:47Z", "agent_id": 0, "user_id": null, "duration": 4, "hold_time": 0, "wrap_up_time": null, "available_via": null, "forwarded_to": null, "consultation_from": null, "transferred_from": null, "transferred_to": null, "minutes_billed": null, "call_charge": "0.0", "completion_status": "completed", "consultation_time": null, "talk_time": 0, "consultation_to": null, "conference_time": null, "conference_from": null, "conference_to": null, "quality_issues": ["none"], "call_id": 360121166995, "type": "customer"}, "emitted_at": 1674159475493}
+{"stream": "call_legs", "data": {"id": 360223248835, "created_at": "2021-10-20T14:34:28Z", "updated_at": "2021-10-20T14:40:20Z", "agent_id": 0, "user_id": null, "duration": 347, "hold_time": 0, "wrap_up_time": null, "available_via": null, "forwarded_to": null, "consultation_from": null, "transferred_from": null, "transferred_to": null, "minutes_billed": null, "call_charge": "0.0", "completion_status": "completed", "consultation_time": null, "talk_time": 0, "consultation_to": null, "conference_time": null, "conference_from": null, "conference_to": null, "quality_issues": ["information_not_available"], "call_id": 360120313416, "type": "customer"}, "emitted_at": 1674159475494}
+{"stream": "call_legs", "data": {"id": 360222256556, "created_at": "2021-10-20T14:50:30Z", "updated_at": "2021-10-20T14:55:21Z", "agent_id": 0, "user_id": null, "duration": 286, "hold_time": 0, "wrap_up_time": null, "available_via": null, "forwarded_to": null, "consultation_from": null, "transferred_from": null, "transferred_to": null, "minutes_billed": null, "call_charge": "0.0", "completion_status": "completed", "consultation_time": null, "talk_time": 0, "consultation_to": null, "conference_time": null, "conference_from": null, "conference_to": null, "quality_issues": ["information_not_available"], "call_id": 360120313696, "type": "customer"}, "emitted_at": 1674159475494}
+{"stream": "call_legs", "data": {"id": 360223248815, "created_at": "2021-10-20T14:34:12Z", "updated_at": "2021-10-20T15:14:34Z", "agent_id": 0, "user_id": null, "duration": 9, "hold_time": 0, "wrap_up_time": null, "available_via": null, "forwarded_to": null, "consultation_from": null, "transferred_from": null, "transferred_to": null, "minutes_billed": null, "call_charge": "0.0", "completion_status": "completed", "consultation_time": null, "talk_time": 0, "consultation_to": null, "conference_time": null, "conference_from": null, "conference_to": null, "quality_issues": ["none"], "call_id": 360120313376, "type": "customer"}, "emitted_at": 1674159475495}
+{"stream": "call_legs", "data": {"id": 360222257236, "created_at": "2021-10-20T15:16:08Z", "updated_at": "2021-10-20T15:20:17Z", "agent_id": 0, "user_id": null, "duration": 247, "hold_time": 0, "wrap_up_time": null, "available_via": null, "forwarded_to": null, "consultation_from": null, "transferred_from": null, "transferred_to": null, "minutes_billed": null, "call_charge": "0.0", "completion_status": "completed", "consultation_time": null, "talk_time": 0, "consultation_to": null, "conference_time": null, "conference_from": null, "conference_to": null, "quality_issues": ["information_not_available"], "call_id": 360121169655, "type": "customer"}, "emitted_at": 1674159475495}
+{"stream": "call_legs", "data": {"id": 360222256136, "created_at": "2021-10-20T14:40:08Z", "updated_at": "2021-10-20T15:20:35Z", "agent_id": 0, "user_id": null, "duration": 14, "hold_time": 0, "wrap_up_time": null, "available_via": null, "forwarded_to": null, "consultation_from": null, "transferred_from": null, "transferred_to": null, "minutes_billed": null, "call_charge": "0.0", "completion_status": "completed", "consultation_time": null, "talk_time": 0, "consultation_to": null, "conference_time": null, "conference_from": null, "conference_to": null, "quality_issues": ["none"], "call_id": 360121168815, "type": "customer"}, "emitted_at": 1674159475495}
+{"stream": "call_legs", "data": {"id": 360223249615, "created_at": "2021-10-20T14:49:52Z", "updated_at": "2021-10-20T15:30:06Z", "agent_id": 0, "user_id": null, "duration": 3, "hold_time": 0, "wrap_up_time": null, "available_via": null, "forwarded_to": null, "consultation_from": null, "transferred_from": null, "transferred_to": null, "minutes_billed": null, "call_charge": "0.0", "completion_status": "completed", "consultation_time": null, "talk_time": 0, "consultation_to": null, "conference_time": null, "conference_from": null, "conference_to": null, "quality_issues": ["none"], "call_id": 360120313656, "type": "customer"}, "emitted_at": 1674159475496}
+{"stream": "greetings", "data": {"id": "voicemail_en", "name": "Default (voicemail on)", "category_id": 1, "default": true, "default_lang": true, "active": true, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_voicemail_greeting-2f8e559817bdaf572b7399ba19bd077943a99102eb79421fb37c45c6c209dc42.mp3", "audio_name": "voicemail_en.mp3", "upload_id": null, "phone_number_ids": [360000121575], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479082}
+{"stream": "greetings", "data": {"id": "voicemail_jp", "name": "Default (Japanese)", "category_id": 1, "default": true, "default_lang": false, "active": false, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_jp_voicemail_greeting-877bed4a67aa833401f1e6dd9e26cc18aeee83f39a88cf60aa939a5987292286.mp3", "audio_name": "voicemail_jp.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479082}
+{"stream": "greetings", "data": {"id": "voicemail_none", "name": "None", "category_id": 1, "default": true, "default_lang": false, "active": false, "pending": false, "audio_url": null, "audio_name": "voicemail_none.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479082}
+{"stream": "greetings", "data": {"id": "available_en", "name": "Default", "category_id": 2, "default": true, "default_lang": true, "active": true, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_available_greeting-4fc2c1e71ea75b4bf5b7dd32a7104e10e4e8bf24000201429d7c11a845784dc5.mp3", "audio_name": "available_en.mp3", "upload_id": null, "phone_number_ids": [360000121575], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479083}
+{"stream": "greetings", "data": {"id": "available_jp", "name": "Default (Japanese)", "category_id": 2, "default": true, "default_lang": false, "active": false, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_jp_available_greeting-046a59a7baffe238eb7370e7cf5fe7305371540474c93e0f30c731328b342174.mp3", "audio_name": "available_jp.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479084}
+{"stream": "greetings", "data": {"id": "available_none", "name": "None", "category_id": 2, "default": true, "default_lang": false, "active": false, "pending": false, "audio_url": null, "audio_name": "available_none.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479084}
+{"stream": "greetings", "data": {"id": "wait_en", "name": "Default", "category_id": 3, "default": true, "default_lang": true, "active": true, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_wait_greeting-9af4ed352eb6d50cf3f85aa7c41492be6ff1bab5228cc3cf0fbb8957738dbe40.mp3", "audio_name": "wait_en.mp3", "upload_id": null, "phone_number_ids": [360000121575], "ivr_ids": [], "has_sub_settings": false}, "emitted_at": 1674159479085}
+{"stream": "greetings", "data": {"id": "hold_en", "name": "Default", "category_id": 4, "default": true, "default_lang": true, "active": true, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_hold_greeting-9af4ed352eb6d50cf3f85aa7c41492be6ff1bab5228cc3cf0fbb8957738dbe40.mp3", "audio_name": "hold_en.mp3", "upload_id": null, "phone_number_ids": [360000121575], "ivr_ids": [], "has_sub_settings": false}, "emitted_at": 1674159479086}
+{"stream": "greetings", "data": {"id": "ivr_none", "name": "None", "category_id": 5, "default": true, "default_lang": false, "active": false, "pending": false, "audio_url": null, "audio_name": "ivr_none.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": false}, "emitted_at": 1674159479086}
+{"stream": "greetings", "data": {"id": "available_en_call_monitoring", "name": "Default (call monitoring)", "category_id": 2, "default": true, "default_lang": true, "active": false, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_available_greeting_with_call_monitoring-efc19b939e4c5ceb8455db8e9754335806beb7bb9a28ce3571071a5a96871d76.mp3", "audio_name": "available_en_call_monitoring.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479087}
+{"stream": "greetings", "data": {"id": "available_jp_call_monitoring", "name": "Default (Japanese call monitoring)", "category_id": 2, "default": true, "default_lang": false, "active": false, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_jp_available_greeting_with_call_monitoring-7268e49ae9cc8f2fc675c96dfed1af98c9d0e9ae77f90d773d3cd96aed5b9e58.mp3", "audio_name": "available_jp_call_monitoring.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479087}
+{"stream": "greetings", "data": {"id": "callback_en", "name": "Default", "category_id": 6, "default": true, "default_lang": true, "active": true, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_callback_greeting_V2-bf2424b358a4faeaa828ccb69c967ad4074445229bbb0c73dd120700319de68a.mp3", "audio_name": "callback_en.mp3", "upload_id": null, "phone_number_ids": [360000121575], "ivr_ids": [], "has_sub_settings": false}, "emitted_at": 1674159479088}
+{"stream": "greetings", "data": {"id": "callback-confirmation_en", "name": "Default", "category_id": 7, "default": true, "default_lang": true, "active": true, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_callback_confirmation_greeting_V2-bf7b6a1645341aab989b52a1eb3425d51e41f906396e8b13d669256917697c79.mp3", "audio_name": "callback-confirmation_en.mp3", "upload_id": null, "phone_number_ids": [360000121575], "ivr_ids": [], "has_sub_settings": false}, "emitted_at": 1674159479088}
+{"stream": "greetings", "data": {"id": "callback_none", "name": "None", "category_id": 6, "default": true, "default_lang": false, "active": false, "pending": false, "audio_url": null, "audio_name": "callback_none.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": false}, "emitted_at": 1674159479089}
+{"stream": "greetings", "data": {"id": "callback-confirmation_none", "name": "None", "category_id": 7, "default": true, "default_lang": false, "active": false, "pending": false, "audio_url": null, "audio_name": "callback-confirmation_none.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": false}, "emitted_at": 1674159479089}
+{"stream": "greetings", "data": {"id": "available_en_voicemail_config", "name": "Default (voicemail off)", "category_id": 2, "default": true, "default_lang": true, "active": false, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_available_greeting_no_voicemail-1b9769a85defcc80aac0ab62cbc99b8ecc72f8d0fbfd7165fead98dd49c21c4e.mp3", "audio_name": "available_en_voicemail_config.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479090}
+{"stream": "greetings", "data": {"id": "available_jp_voicemail_config", "name": "Default (Japanese voicemail off)", "category_id": 2, "default": true, "default_lang": false, "active": false, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_jp_available_greeting_no_voicemail-350a937a599dc9b3314d270602cb9e152ce2adeee1cb5b31b31f1995c8cc7882.mp3", "audio_name": "available_jp_voicemail_config.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479090}
+{"stream": "greetings", "data": {"id": "voicemail_en_voicemail_config", "name": "Default (voicemail off)", "category_id": 1, "default": true, "default_lang": true, "active": false, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_voicemail_off_greeting-37c1fef28743683024b42c5577e6eb1bce42aa3aabe1dd01c875c65fb0ec4b05.mp3", "audio_name": "voicemail_en_voicemail_config.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479091}
+{"stream": "greetings", "data": {"id": "call-recording-opt-out_en", "name": "Opt-out consent greeting (default)", "category_id": 8, "default": true, "default_lang": true, "active": true, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_call_recording_opt_out-4ccf97e7c00fa861dc2905d23931fd94b6293416c7f1dc0db3b6d3fe1c2fcf33.mp3", "audio_name": "call-recording-opt-out_en.mp3", "upload_id": null, "phone_number_ids": [360000121575], "ivr_ids": [], "has_sub_settings": false}, "emitted_at": 1674159479091}
+{"stream": "greetings", "data": {"id": "call-recording-opt-in_en", "name": "Opt-in consent greeting (default)", "category_id": 9, "default": true, "default_lang": true, "active": true, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_call_recording_opt_in-e1054755d6c6b90661bdd8f5e8cff1beb73b1841ef515544f386b96e6ed4bad1.mp3", "audio_name": "call-recording-opt-in_en.mp3", "upload_id": null, "phone_number_ids": [360000121575], "ivr_ids": [], "has_sub_settings": false}, "emitted_at": 1674159479092}
+{"stream": "greetings", "data": {"id": "available_en_digital_lines", "name": "Default (digital line)", "category_id": 2, "default": true, "default_lang": true, "active": false, "pending": false, "audio_url": "https://static.zdassets.com/voice/ef9da20555606d86a6f57f86f07ad1bfb0de132c/voice/assets/default_en_available_digital_line_greeting_2-1b9769a85defcc80aac0ab62cbc99b8ecc72f8d0fbfd7165fead98dd49c21c4e.mp3", "audio_name": "available_en_digital_lines.mp3", "upload_id": null, "phone_number_ids": [], "ivr_ids": [], "has_sub_settings": true}, "emitted_at": 1674159479093}
+{"stream": "greeting_categories", "data": {"id": 1, "name": "voicemail"}, "emitted_at": 1674159479490}
+{"stream": "greeting_categories", "data": {"id": 2, "name": "available"}, "emitted_at": 1674159479491}
+{"stream": "greeting_categories", "data": {"id": 3, "name": "wait"}, "emitted_at": 1674159479491}
+{"stream": "greeting_categories", "data": {"id": 4, "name": "hold"}, "emitted_at": 1674159479491}
+{"stream": "greeting_categories", "data": {"id": 5, "name": "ivr"}, "emitted_at": 1674159479491}
+{"stream": "greeting_categories", "data": {"id": 6, "name": "callback"}, "emitted_at": 1674159479491}
+{"stream": "greeting_categories", "data": {"id": 7, "name": "callback_confirmation"}, "emitted_at": 1674159479491}
+{"stream": "greeting_categories", "data": {"id": 8, "name": "call_recording_opt_out"}, "emitted_at": 1674159479492}
+{"stream": "greeting_categories", "data": {"id": 9, "name": "call_recording_opt_in"}, "emitted_at": 1674159479492}
+{"stream": "ivr_menus", "data": {"ivr_id": 360000011856, "id": 360000018476, "name": "Main menu", "default": true, "greeting_id": null, "routes": [{"id": 360000016516, "keypress": "5", "greeting": null, "action": "menu", "options": {"menu_id": 360000018476}, "option_text": "Main menu", "overflow_options": []}]}, "emitted_at": 1674159480308}
+{"stream": "ivr_menus", "data": {"ivr_id": 360000011876, "id": 360000018496, "name": "Main menu", "default": true, "greeting_id": null, "routes": [{"id": 360000015935, "keypress": "0", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000015955, "keypress": "2", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000015975, "keypress": "3", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000015995, "keypress": "4", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016015, "keypress": "6", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016035, "keypress": "8", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016436, "keypress": "1", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016456, "keypress": "5", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016476, "keypress": "7", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016496, "keypress": "9", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}]}, "emitted_at": 1674159480308}
+{"stream": "ivr_menus", "data": {"ivr_id": 360000011896, "id": 360000018516, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480309}
+{"stream": "ivr_menus", "data": {"ivr_id": 360000011916, "id": 360000018536, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480310}
+{"stream": "ivr_menus", "data": {"ivr_id": 360000011936, "id": 360000018556, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480310}
+{"stream": "ivr_menus", "data": {"ivr_id": 360000011956, "id": 360000018576, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480310}
+{"stream": "ivr_menus", "data": {"ivr_id": 360000011976, "id": 360000018596, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480310}
+{"stream": "ivr_menus", "data": {"ivr_id": 360000011996, "id": 360000018616, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480311}
+{"stream": "ivr_menus", "data": {"ivr_id": 360000012016, "id": 360000018636, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480311}
+{"stream": "ivr_routes", "data": {"ivr_id": 360000011856, "ivr_menu_id": 360000018476, "id": 360000018476, "name": "Main menu", "default": true, "greeting_id": null, "routes": [{"id": 360000016516, "keypress": "5", "greeting": null, "action": "menu", "options": {"menu_id": 360000018476}, "option_text": "Main menu", "overflow_options": []}]}, "emitted_at": 1674159480341}
+{"stream": "ivr_routes", "data": {"ivr_id": 360000011876, "ivr_menu_id": 360000018496, "id": 360000018496, "name": "Main menu", "default": true, "greeting_id": null, "routes": [{"id": 360000015935, "keypress": "0", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000015955, "keypress": "2", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000015975, "keypress": "3", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000015995, "keypress": "4", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016015, "keypress": "6", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016035, "keypress": "8", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016436, "keypress": "1", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016456, "keypress": "5", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016476, "keypress": "7", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016496, "keypress": "9", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}]}, "emitted_at": 1674159480342}
+{"stream": "ivr_routes", "data": {"ivr_id": 360000011896, "ivr_menu_id": 360000018516, "id": 360000018516, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480343}
+{"stream": "ivr_routes", "data": {"ivr_id": 360000011916, "ivr_menu_id": 360000018536, "id": 360000018536, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480343}
+{"stream": "ivr_routes", "data": {"ivr_id": 360000011936, "ivr_menu_id": 360000018556, "id": 360000018556, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480345}
+{"stream": "ivr_routes", "data": {"ivr_id": 360000011956, "ivr_menu_id": 360000018576, "id": 360000018576, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480345}
+{"stream": "ivr_routes", "data": {"ivr_id": 360000011976, "ivr_menu_id": 360000018596, "id": 360000018596, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480346}
+{"stream": "ivr_routes", "data": {"ivr_id": 360000011996, "ivr_menu_id": 360000018616, "id": 360000018616, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480347}
+{"stream": "ivr_routes", "data": {"ivr_id": 360000012016, "ivr_menu_id": 360000018636, "id": 360000018636, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}, "emitted_at": 1674159480348}
+{"stream": "ivrs", "data": {"id": 360000011856, "name": "Fake IVR Menu 3", "menus": [{"id": 360000018476, "name": "Main menu", "default": true, "greeting_id": null, "routes": [{"id": 360000016516, "keypress": "5", "greeting": null, "action": "menu", "options": {"menu_id": 360000018476}, "option_text": "Main menu", "overflow_options": []}]}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480404}
+{"stream": "ivrs", "data": {"id": 360000011876, "name": "Fake IVR Menu 5", "menus": [{"id": 360000018496, "name": "Main menu", "default": true, "greeting_id": null, "routes": [{"id": 360000015935, "keypress": "0", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000015955, "keypress": "2", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000015975, "keypress": "3", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000015995, "keypress": "4", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016015, "keypress": "6", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016035, "keypress": "8", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016436, "keypress": "1", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016456, "keypress": "5", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016476, "keypress": "7", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}, {"id": 360000016496, "keypress": "9", "greeting": null, "action": "group", "options": {"group_ids": [10001]}, "option_text": null, "overflow_options": []}]}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480405}
+{"stream": "ivrs", "data": {"id": 360000011896, "name": "Fake IVR Menu 6", "menus": [{"id": 360000018516, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480406}
+{"stream": "ivrs", "data": {"id": 360000011916, "name": "Fake IVR Menu 7", "menus": [{"id": 360000018536, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480406}
+{"stream": "ivrs", "data": {"id": 360000011936, "name": "Fake IVR Menu 9", "menus": [{"id": 360000018556, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480407}
+{"stream": "ivrs", "data": {"id": 360000011956, "name": "Fake IVR Menu 10", "menus": [{"id": 360000018576, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480407}
+{"stream": "ivrs", "data": {"id": 360000011976, "name": "Fake IVR Menu 17", "menus": [{"id": 360000018596, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480407}
+{"stream": "ivrs", "data": {"id": 360000011996, "name": "Fake IVR Menu 19", "menus": [{"id": 360000018616, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480408}
+{"stream": "ivrs", "data": {"id": 360000012016, "name": "Fake IVR Menu 20", "menus": [{"id": 360000018636, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480408}
+{"stream": "ivrs", "data": {"id": 360000012036, "name": "Fake IVR Menu 21", "menus": [{"id": 360000018656, "name": "Main menu", "default": true, "greeting_id": null, "routes": []}], "phone_number_ids": [], "phone_number_names": []}, "emitted_at": 1674159480408}
+{"stream": "phone_numbers", "data": {"id": 360000121575, "country_code": "US", "created_at": "2020-12-14T18:44:31Z", "external": false, "number": "+12059531462", "name": "+1 (205) 953-1462", "nickname": null, "display_number": "+1 (205) 953-1462", "location": "AL", "toll_free": false, "transcription": true, "recorded": true, "call_recording_consent": "always", "group_ids": [], "default_group_id": null, "greeting_ids": [], "default_greeting_ids": ["voicemail_en", "available_en", "wait_en", "hold_en", "callback_en", "callback-confirmation_en", "call-recording-opt-out_en", "call-recording-opt-in_en"], "categorised_greetings": {"1": "voicemail_en", "2": "available_en", "3": "wait_en", "4": "hold_en", "6": "callback_en", "7": "callback-confirmation_en", "8": "call-recording-opt-out_en", "9": "call-recording-opt-in_en"}, "categorised_greetings_with_sub_settings": {"1": {"voicemail_on_outside_business_hours": "voicemail_en", "voicemail_on_inside_business_hours": "voicemail_en", "voicemail_off_inside_business_hours": "voicemail_en_voicemail_config", "voicemail_off_outside_business_hours": "voicemail_en_voicemail_config"}, "2": {"voicemail_on": "available_en", "voicemail_off": "available_en_voicemail_config"}, "3": "wait_en", "4": "hold_en", "6": "callback_en", "7": "callback-confirmation_en", "8": "call-recording-opt-out_en", "9": "call-recording-opt-in_en"}, "sms_group_id": null, "capabilities": {"sms": true, "mms": true, "voice": true, "emergency_address": true}, "sms_enabled": false, "voice_enabled": true, "priority": 0, "outbound_enabled": true, "line_type": "phone", "ivr_id": null, "schedule_id": null, "failover_number": null}, "emitted_at": 1674159481130}