diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index bca75828876e7f..f86f441d6e1c12 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -255,7 +255,7 @@ - name: Close.com sourceDefinitionId: dfffecb7-9a13-43e9-acdc-b92af7997ca9 dockerRepository: airbyte/source-close-com - dockerImageTag: 0.1.0 + dockerImageTag: 0.2.0 documentationUrl: https://docs.airbyte.com/integrations/sources/close-com icon: close.svg sourceType: api @@ -267,7 +267,7 @@ documentationUrl: https://docs.airbyte.com/integrations/sources/coingecko-coins icon: coingeckocoins.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: Cockroachdb sourceDefinitionId: 9fa5862c-da7c-11eb-8d19-0242ac130003 dockerRepository: airbyte/source-cockroachdb diff --git a/airbyte-config/init/src/main/resources/seed/source_specs.yaml b/airbyte-config/init/src/main/resources/seed/source_specs.yaml index 9f1985d52c26c3..2d5d9ca1621e34 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -2422,7 +2422,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-close-com:0.1.0" +- dockerImage: "airbyte/source-close-com:0.2.0" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/close-com" connectionSpecification: @@ -2431,7 +2431,7 @@ type: "object" required: - "api_key" - additionalProperties: false + additionalProperties: true properties: api_key: type: "string" diff --git a/airbyte-integrations/connectors/source-close-com/Dockerfile b/airbyte-integrations/connectors/source-close-com/Dockerfile index 8ae4d853fc97ac..76440ca576f931 100644 --- a/airbyte-integrations/connectors/source-close-com/Dockerfile +++ b/airbyte-integrations/connectors/source-close-com/Dockerfile @@ -12,5 +12,5 @@ RUN pip install . ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.0 +LABEL io.airbyte.version=0.2.0 LABEL io.airbyte.name=airbyte/source-close-com diff --git a/airbyte-integrations/connectors/source-close-com/acceptance-test-config.yml b/airbyte-integrations/connectors/source-close-com/acceptance-test-config.yml index c8b56b0b5f2cff..661766bc527631 100644 --- a/airbyte-integrations/connectors/source-close-com/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-close-com/acceptance-test-config.yml @@ -1,27 +1,52 @@ # See [Source Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/source-acceptance-tests-reference) # for more information about how to configure these tests connector_image: airbyte/source-close-com:dev -tests: +acceptance_tests: spec: - - spec_path: "source_close_com/spec.json" + tests: + - spec_path: "source_close_com/spec.json" connection: - - config_path: "secrets/config.json" - status: "succeed" - - config_path: "integration_tests/invalid_config.json" - status: "failed" + tests: + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" discovery: - - config_path: "secrets/config.json" + tests: + - config_path: "secrets/config.json" + # Some field types was changed for streams. + # custom_activities: id field was added + # custom_email_connected_accounts: imap field was changed to object + # smart_views: imap field was changed to object + backward_compatibility_tests_config: + disable_for_version: "0.1.0" basic_read: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: ["meeting_activities", "missed_call_tasks", "email_followup_tasks", "answered_detached_call_tasks", - "incoming_sms_tasks", "zoom_connected_accounts", "custom_email_connected_accounts", - "google_connected_accounts", "send_as", "email_sequences", "dialer", "email_bulk_actions", - "sequence_subscription_bulk_actions", "delete_bulk_actions"] + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + expect_records: + path: "integration_tests/expected_records.txt" + extra_fields: no + exact_order: no + extra_records: yes + empty_streams: + - name: missed_call_tasks + bypass_reason: "unable to populate" + - name: answered_detached_call_tasks + bypass_reason: "unable to populate" + - name: incoming_sms_tasks + bypass_reason: "unable to populate" + - name: send_as + bypass_reason: "unable to populate" + - name: voicemail_tasks + bypass_reason: "unable to populate" incremental: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - future_state_path: "integration_tests/abnormal_state.json" + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.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" + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-close-com/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-close-com/acceptance-test-docker.sh old mode 100644 new mode 100755 index e4d8b1cef8961e..c51577d10690c1 --- a/airbyte-integrations/connectors/source-close-com/acceptance-test-docker.sh +++ b/airbyte-integrations/connectors/source-close-com/acceptance-test-docker.sh @@ -1,7 +1,7 @@ #!/usr/bin/env sh # Build latest connector image -docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2) +docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2-) # Pull latest acctest image docker pull airbyte/source-acceptance-test:latest diff --git a/airbyte-integrations/connectors/source-close-com/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-close-com/integration_tests/abnormal_state.json index 4825ea7533c19d..fa1da2d874b722 100644 --- a/airbyte-integrations/connectors/source-close-com/integration_tests/abnormal_state.json +++ b/airbyte-integrations/connectors/source-close-com/integration_tests/abnormal_state.json @@ -30,7 +30,7 @@ "date_created": "2050-07-13T11:39:05.012000+00:00" }, "leads": { - "date_updated": "2050-07-16T00:00:12.701000" + "date_updated": "2050-07-16T00:00:12.701000+00:00" }, "lead_tasks": { "date_created": "2050-07-13T11:39:03.520000+00:00" diff --git a/airbyte-integrations/connectors/source-close-com/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-close-com/integration_tests/expected_records.txt new file mode 100644 index 00000000000000..892231231ba4a8 --- /dev/null +++ b/airbyte-integrations/connectors/source-close-com/integration_tests/expected_records.txt @@ -0,0 +1,679 @@ +{"stream": "created_activities", "data": {"import_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "date_created": "2021-07-13T11:39:05.012000+00:00", "activity_at": "2021-07-13T11:39:05.012000+00:00", "id": "acti_CO9Th9maeKbnjp8XiG6gPada9OL2icBKBjuWK0aSzi5", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "source": "ui", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Created", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-07-13T11:39:05.012000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413430160} +{"stream": "created_activities", "data": {"import_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "date_created": "2021-07-13T11:39:03.413000+00:00", "activity_at": "2021-07-13T11:39:03.413000+00:00", "id": "acti_Vu4EowJ5vQVaTp2UviBUWsah2gfHfzEhToD0qt20awK", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "source": "ui", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Created", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-07-13T11:39:03.413000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413430167} +{"stream": "created_activities", "data": {"import_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "date_created": "2021-07-04T11:39:00.850000+00:00", "activity_at": "2021-07-04T11:39:00.850000+00:00", "id": "acti_1vDHprrVKawVMTbb4XmRtOJeP407lC7VeHwJu47cNzQ", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "source": "ui", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Created", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-07-13T11:39:04.485000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413430173} +{"stream": "created_activities", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by_name": "Jean Lafleur", "date_updated": "2022-11-11T09:00:52.304000+00:00", "_type": "Created", "contact_id": null, "date_created": "2022-11-11T09:00:52.285000+00:00", "id": "acti_LBTzFHimY46YWxvE0xpsR3tiZCHKgj3LCFil3pIfgmg", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "source": "ui", "import_id": null, "users": [], "activity_at": "2022-11-11T09:00:52.285000+00:00", "user_name": "Jean Lafleur"}, "emitted_at": 1670413430816} +{"stream": "created_activities", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by_name": "Jean Lafleur", "date_updated": "2022-11-08T15:54:42.398000+00:00", "_type": "Created", "contact_id": null, "date_created": "2022-11-08T15:54:42.377000+00:00", "id": "acti_CojceqMDlW46aVmKCv6YXS8oMJGPfchHYfXXySGMm39", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "source": "ui", "import_id": null, "users": [], "activity_at": "2022-11-08T15:54:42.377000+00:00", "user_name": "Jean Lafleur"}, "emitted_at": 1670413430818} +{"stream": "created_activities", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by_name": "Jean Lafleur", "date_updated": "2022-07-05T21:01:25.647000+00:00", "_type": "Created", "contact_id": null, "date_created": "2022-07-05T21:01:25.608000+00:00", "id": "acti_A2H4d5uvLXHTlxQjuUkg1SZNdYAcVEqLcTQ3EhlDZme", "lead_id": "lead_Eohw2Vf6WOKZHQ97nS1UTL3iV62pAJFX3ROgJ5WT4cY", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "source": "ui", "import_id": null, "users": [], "activity_at": "2022-07-05T21:01:25.608000+00:00", "user_name": "Jean Lafleur"}, "emitted_at": 1670413430820} +{"stream": "opportunity_status_change_activities", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "users": [], "opportunity_value_formatted": "$500", "opportunity_date_won": "2021-07-15T00:00:00+00:00", "old_status_type": "active", "id": "acti_wYiwpVt6MU3LVce1p8JHW8TowOW8GlDikXHkIHvl5xM", "opportunity_id": "oppo_1TfmaSLuECcdSQIBnjUOBj1gAXdyrp4SFaogvcEmtbk", "old_pipeline_id": "pipe_0IAl41rGk9OPls9CdxFpHy", "user_name": "Jean Lafleur", "date_updated": "2021-08-18T10:26:44.228000+00:00", "new_status_id": "stat_AWXzFJkvkHVyJQPFulY0wM7LrQRiMEtQChGumG035bH", "opportunity_value_period": "one_time", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "old_pipeline_name": "Sales", "date_created": "2021-08-18T10:26:44.228000+00:00", "created_by_name": "Jean Lafleur", "_type": "OpportunityStatusChange", "updated_by_name": "Jean Lafleur", "old_status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "opportunity_value": 50000, "opportunity_confidence": 75, "contact_id": null, "new_status_type": "active", "old_status_label": "Demo Completed", "activity_at": "2021-08-18T10:26:44.228000+00:00", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "opportunity_value_currency": "USD", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "new_pipeline_name": "Sales", "new_pipeline_id": "pipe_0IAl41rGk9OPls9CdxFpHy", "new_status_label": "Proposal Sent"}, "emitted_at": 1670413432138} +{"stream": "note_activities", "data": {"lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "date_created": "2021-09-08T09:52:33.209000+00:00", "activity_at": "2021-09-08T09:52:33.209000+00:00", "id": "acti_S8FCREkmsz7QYukb5ce25aMwDD09ojKF5R9eXiPJczw", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "note": "test", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Note", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-09-08T09:52:33.209000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413433988} +{"stream": "note_activities", "data": {"lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "date_created": "2021-08-12T14:16:54.027000+00:00", "activity_at": "2021-08-12T14:16:54.027000+00:00", "id": "acti_MEZjvRruzMu1YJP9VFz8AIlJPLNCINLJjKO3bw7TAW7", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "note": "demo note", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Note", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-08-12T14:16:55.644000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413433998} +{"stream": "note_activities", "data": {"lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "date_created": "2021-08-12T12:10:32.670000+00:00", "activity_at": "2021-08-12T12:10:32.670000+00:00", "id": "acti_MWsXtWl1ouu73mqy8wFOsz6rskZ5fYky1XlB3UqlGwr", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "note": "test 2", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Note", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-08-18T10:00:40.586000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413434004} +{"stream": "note_activities", "data": {"lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "date_created": "2021-07-13T11:39:03.728000+00:00", "activity_at": "2021-07-13T11:39:03.728000+00:00", "id": "acti_7VhyfbgDQp9a9d4CfRYhtpd1QiRCexSp9iMAYTYGonW", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "note": "Workflows & Sequences\n\nThe 5 Smart Views on the left side of Close make up an entire workflow! This workflow will help you automate your daily activity, such as calling, bulk emailing, and follow-ups.\n\nThe workflow here is just an example, so be sure to refer to https://help.close.com/docs/creating-smart-views-for-calling", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Note", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-07-13T11:39:03.728000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413434009} +{"stream": "note_activities", "data": {"lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "date_created": "2021-07-13T11:39:03.678000+00:00", "activity_at": "2021-07-13T11:39:03.678000+00:00", "id": "acti_HiGIISs8TJIH0oG2RrFKCNEIxn1rFyASoBoYsBwcPib", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "note": "Import Your Contacts\n\nThere are several ways for you to import your data, including migrating from your current CRM, uploading an Excel file and more: https://help.close.com/docs/importing-leads-from-file \n\nOnce your import is complete, all email conversations between your email address and your contacts\u2019 email addresses will be displayed.", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Note", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-07-13T11:39:03.678000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413434013} +{"stream": "note_activities", "data": {"lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "date_created": "2021-07-13T11:39:03.633000+00:00", "activity_at": "2021-07-13T11:39:03.633000+00:00", "id": "acti_VmYlFVYdmnQGj0pelypp3m5h5YpOZBowuZNIDUXO18e", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "note": "Built-In, Unlimited, Worldwide Calling\n\nYour trial is on our Business plan with unlimited incoming and outgoing calls. No setup required. You already have your own dedicated phone line; click on the phone icon in the toolbar to see your phone number.\n\nClick the Call button to make a call, and it will be automatically logged. You can enable Call Recording by clicking the phone icon in the toolbar.\n\nReady to get started? Test calling Nick.", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Note", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-07-13T11:39:03.633000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413434016} +{"stream": "note_activities", "data": {"lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "date_created": "2021-07-13T11:39:03.586000+00:00", "activity_at": "2021-07-13T11:39:03.586000+00:00", "id": "acti_aAODz5lPBplJxwalbFKUTKhlqaIryrqiiaItVSOpI0b", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "note": "2-Way Email Sync\n\nClose will pull up historical email conversations with your lead contacts and automatically log sent and received emails. Whether you send an email from your existing email client (Outlook, Gmail, etc.) or from Close, your emails will be logged in Close automatically.\n\nEmail histories and tracking only occur for lead contacts in Close that have an email address. Sync your email address under Settings > Your Email Settings.", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Note", "updated_by_name": "Jean Lafleur", "contact_id": null, "user_name": "Jean Lafleur", "users": [], "date_updated": "2021-07-13T11:39:03.586000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413434019} +{"stream": "meeting_activities", "data": {"title": "Test meeting 2", "user_name": "Jean Lafleur", "calendar_event_link": "https://www.google.com/calendar/event?eid=MWRlcDU1cDZtamY0MGxnYnJ2OXI5ajlocG8gaXJ5bmEuZ3JhbmtvdmFAYWlyYnl0ZS5pbw", "source": "calendar", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-12T19:00:03.639000+00:00", "_type": "Meeting", "date_created": "2022-11-12T18:00:00+00:00", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "contact_id": null, "updated_by_name": "Jean Lafleur", "ends_at": "2022-11-12T19:00:00+00:00", "created_by_name": "Jean Lafleur", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "connected_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "is_recurring": false, "starts_at": "2022-11-12T18:00:00+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "location": null, "attendees": [{"email": "irina.grankova@gmail.com", "is_organizer": false, "user_id": null, "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "status": "yes", "name": null}, {"email": "iryna.grankova@airbyte.io", "is_organizer": true, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "status": "yes", "name": null}], "activity_at": "2022-11-12T18:00:00+00:00", "note": "", "id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "status": "completed", "integrations": [], "duration": 3600, "calendar_event_uids": ["1dep55p6mjf40lgbrv9r9j9hpo"]}, "emitted_at": 1670413436543} +{"stream": "call_activities", "data": {"local_phone_formatted": null, "user_name": null, "created_by_name": null, "dialer_saved_search_id": null, "phone": "+16505176539", "sequence_id": null, "updated_by_name": null, "cost": null, "voicemail_duration": 28, "remote_phone": "+16505176539", "sequence_subscription_id": null, "voicemail_url": "https://api.close.com/call/acti_NsDheeFBzEAmjRfpBmclxdzKWqLnGZaIvU3ZvvyrDJt/voicemail/", "disposition": "vm-left", "created_by": null, "updated_by": null, "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "date_created": "2021-07-16T00:00:12.646000+00:00", "status": "completed", "date_updated": "2021-07-16T00:00:12.646000+00:00", "local_phone": null, "user_id": null, "activity_at": "2021-07-16T00:00:12.646000+00:00", "forwarded_to": null, "source": "Close.io", "users": [], "date_answered": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "has_recording": false, "direction": "inbound", "transferred_from": null, "is_joinable": false, "recording_url": null, "local_country_iso": "", "transferred_to": null, "duration": 0, "is_to_group_number": false, "transferred_to_user_id": null, "recording_expires_at": null, "dialer_id": null, "id": "acti_NsDheeFBzEAmjRfpBmclxdzKWqLnGZaIvU3ZvvyrDJt", "remote_phone_formatted": "+1 650-517-6539", "is_forwarded": false, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "transferred_from_user_id": null, "_type": "Call", "call_method": "regular", "remote_country_iso": "US", "coach_legs": [], "note": null}, "emitted_at": 1670413437878} +{"stream": "call_activities", "data": {"local_phone_formatted": null, "user_name": "Jean Lafleur", "created_by_name": "Jean Lafleur", "dialer_saved_search_id": null, "phone": "+12025550186", "sequence_id": null, "updated_by_name": "Jean Lafleur", "cost": null, "voicemail_duration": 0, "remote_phone": "+12025550186", "sequence_subscription_id": null, "voicemail_url": null, "disposition": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "date_created": "2021-07-05T11:39:00.850000+00:00", "status": "no-answer", "date_updated": "2021-07-13T11:39:04.536000+00:00", "local_phone": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "activity_at": "2021-07-05T11:39:00.850000+00:00", "forwarded_to": null, "source": "Close.io", "users": [], "date_answered": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "has_recording": false, "direction": "outbound", "transferred_from": null, "is_joinable": false, "recording_url": null, "local_country_iso": "", "transferred_to": null, "duration": 0, "is_to_group_number": false, "transferred_to_user_id": null, "recording_expires_at": null, "dialer_id": null, "id": "acti_wszWUd92D7wNYSbn5gKWXCf55NeyU0jc1Vguv7DfUiH", "remote_phone_formatted": "+1 202-555-0186", "is_forwarded": false, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "transferred_from_user_id": null, "_type": "Call", "call_method": "regular", "remote_country_iso": "US", "coach_legs": [], "note": "Gob never answered."}, "emitted_at": 1670413437881} +{"stream": "call_activities", "data": {"transferred_to_user_id": null, "date_created": "2022-11-09T13:57:14.751000+00:00", "sequence_subscription_id": null, "id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "disposition": "answered", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status": "completed", "cost": "2", "local_phone_formatted": "+1 415-625-1293", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "is_to_group_number": false, "transferred_to": null, "duration": 17, "source": "Close.io", "local_country_iso": "US", "is_forwarded": false, "remote_phone": "+14156236785", "remote_country_iso": "US", "forwarded_to": null, "date_updated": "2022-11-09T13:57:40.167000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "call_method": "regular", "coach_legs": [], "activity_at": "2022-11-09T13:57:14.751000+00:00", "voicemail_url": null, "phone": "+14156236785", "user_name": "Jean Lafleur", "remote_phone_formatted": "+1 415-623-6785", "dialer_id": null, "direction": "outbound", "users": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "recording_expires_at": null, "transferred_from_user_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Call", "dialer_saved_search_id": null, "transferred_from": null, "is_joinable": false, "sequence_id": null, "voicemail_duration": 0, "updated_by_name": "Jean Lafleur", "date_answered": "2022-11-09T13:57:22.063000+00:00", "recording_url": null, "has_recording": false, "created_by_name": "Jean Lafleur", "note": "", "local_phone": "+14156251293"}, "emitted_at": 1670413438491} +{"stream": "call_activities", "data": {"transferred_to_user_id": null, "date_created": "2022-11-09T12:55:26.751000+00:00", "sequence_subscription_id": null, "id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "disposition": "answered", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status": "completed", "cost": null, "local_phone_formatted": "+1 415-625-1293", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "is_to_group_number": false, "transferred_to": null, "duration": 0, "source": "Close.io", "local_country_iso": "US", "is_forwarded": false, "remote_phone": "+14156236785", "remote_country_iso": "US", "forwarded_to": null, "date_updated": "2022-11-09T12:57:27.648000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "call_method": "regular", "coach_legs": [], "activity_at": "2022-11-09T12:55:26.751000+00:00", "voicemail_url": null, "phone": "+14156236785", "user_name": "Jean Lafleur", "remote_phone_formatted": "+1 415-623-6785", "dialer_id": null, "direction": "outbound", "users": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "recording_expires_at": null, "transferred_from_user_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Call", "dialer_saved_search_id": null, "transferred_from": null, "is_joinable": false, "sequence_id": null, "voicemail_duration": 0, "updated_by_name": "Jean Lafleur", "date_answered": null, "recording_url": null, "has_recording": false, "created_by_name": "Jean Lafleur", "note": "", "local_phone": "+14156251293"}, "emitted_at": 1670413438500} +{"stream": "call_activities", "data": {"transferred_to_user_id": null, "date_created": "2022-11-09T12:55:03.314000+00:00", "sequence_subscription_id": null, "id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "disposition": "answered", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status": "completed", "cost": "2", "local_phone_formatted": "+1 415-625-1293", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "is_to_group_number": false, "transferred_to": null, "duration": 10, "source": "Close.io", "local_country_iso": "US", "is_forwarded": false, "remote_phone": "+14156236785", "remote_country_iso": "US", "forwarded_to": null, "date_updated": "2022-11-09T12:55:23.356000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "call_method": "regular", "coach_legs": [], "activity_at": "2022-11-09T12:55:03.314000+00:00", "voicemail_url": null, "phone": "+14156236785", "user_name": "Jean Lafleur", "remote_phone_formatted": "+1 415-623-6785", "dialer_id": null, "direction": "outbound", "users": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "recording_expires_at": null, "transferred_from_user_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Call", "dialer_saved_search_id": null, "transferred_from": null, "is_joinable": false, "sequence_id": null, "voicemail_duration": 0, "updated_by_name": "Jean Lafleur", "date_answered": "2022-11-09T12:55:11.703000+00:00", "recording_url": null, "has_recording": false, "created_by_name": "Jean Lafleur", "note": "", "local_phone": "+14156251293"}, "emitted_at": 1670413438506} +{"stream": "call_activities", "data": {"transferred_to_user_id": null, "date_created": "2022-11-09T11:20:32.524000+00:00", "sequence_subscription_id": null, "id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "disposition": "answered", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status": "completed", "cost": "2", "local_phone_formatted": "+1 415-625-1293", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "is_to_group_number": false, "transferred_to": null, "duration": 3, "source": "Close.io", "local_country_iso": "US", "is_forwarded": false, "remote_phone": "+14156236785", "remote_country_iso": "US", "forwarded_to": null, "date_updated": "2022-11-09T11:20:42.502000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "call_method": "regular", "coach_legs": [], "activity_at": "2022-11-09T11:20:32.524000+00:00", "voicemail_url": null, "phone": "+14156236785", "user_name": "Jean Lafleur", "remote_phone_formatted": "+1 415-623-6785", "dialer_id": null, "direction": "outbound", "users": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "recording_expires_at": null, "transferred_from_user_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Call", "dialer_saved_search_id": null, "transferred_from": null, "is_joinable": false, "sequence_id": null, "voicemail_duration": 0, "updated_by_name": "Jean Lafleur", "date_answered": "2022-11-09T11:20:38.986000+00:00", "recording_url": null, "has_recording": false, "created_by_name": "Jean Lafleur", "note": "", "local_phone": "+14156251293"}, "emitted_at": 1670413438511} +{"stream": "call_activities", "data": {"transferred_to_user_id": null, "date_created": "2022-11-08T15:55:39.770000+00:00", "sequence_subscription_id": null, "id": "acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG", "disposition": "blocked", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status": "failed", "cost": null, "local_phone_formatted": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "is_to_group_number": false, "transferred_to": null, "duration": 0, "source": "Close.io", "local_country_iso": "", "is_forwarded": false, "remote_phone": "+380636306253", "remote_country_iso": "UA", "forwarded_to": null, "date_updated": "2022-11-09T12:56:13.631000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "call_method": "regular", "coach_legs": [], "activity_at": "2022-11-08T15:55:39.770000+00:00", "voicemail_url": null, "phone": "+380636306253", "user_name": "Jean Lafleur", "remote_phone_formatted": "+380 63 630 6253", "dialer_id": null, "direction": "outbound", "users": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "recording_expires_at": null, "transferred_from_user_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Call", "dialer_saved_search_id": null, "transferred_from": null, "is_joinable": false, "sequence_id": null, "voicemail_duration": 0, "updated_by_name": "Jean Lafleur", "date_answered": null, "recording_url": null, "has_recording": false, "created_by_name": "Jean Lafleur", "note": "Test test", "local_phone": null}, "emitted_at": 1670413438515} +{"stream": "call_activities", "data": {"transferred_to_user_id": null, "date_created": "2022-11-08T15:53:39.388000+00:00", "sequence_subscription_id": null, "id": "acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ", "disposition": "blocked", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status": "failed", "cost": null, "local_phone_formatted": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "is_to_group_number": false, "transferred_to": null, "duration": 0, "source": "Close.io", "local_country_iso": "", "is_forwarded": false, "remote_phone": "+380636306253", "remote_country_iso": "UA", "forwarded_to": null, "date_updated": "2022-11-08T15:54:58.677000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "call_method": "regular", "coach_legs": [], "activity_at": "2022-11-08T15:53:39.388000+00:00", "voicemail_url": null, "phone": "+380636306253", "user_name": "Jean Lafleur", "remote_phone_formatted": "+380 63 630 6253", "dialer_id": null, "direction": "outbound", "users": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "recording_expires_at": null, "transferred_from_user_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "Call", "dialer_saved_search_id": null, "transferred_from": null, "is_joinable": false, "sequence_id": null, "voicemail_duration": 0, "updated_by_name": "Jean Lafleur", "date_answered": null, "recording_url": null, "has_recording": false, "created_by_name": "Jean Lafleur", "note": "", "local_phone": null}, "emitted_at": 1670413438518} +{"stream": "email_activities", "data": {"opens_summary": null, "send_as_id": null, "bcc": [], "subject": "Your bulk edit for Airbyte is done", "updated_by_name": null, "sequence_subscription_id": null, "thread_id": "acti_3rQgtNnE0L7Wo90WzgOXcbfSR2WCjOBipMrAq41yJFE", "in_reply_to_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "bulk_email_action_id": null, "date_created": "2021-08-25T21:15:36+00:00", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "sequence_id": null, "message_ids": ["<162992613594.10130.17609834081606867635@closeio-tasktiger-other-7bd975b8f7-f5phd>"], "_type": "Email", "updated_by": null, "template_id": null, "body_html": "Hello Jean,
\n
\nYour bulk edit in Close was completed successfully.
\n
\nSearch query: *
\nAction: Change lead status to "Interested".
\n
\nAll 2 leads were modified successfully.
\n
\nThanks,
\nClose Support
\nsupport@close.com
\n
\n
\n", "date_sent": "2021-08-25T21:15:36+00:00", "created_by_name": null, "activity_at": "2021-08-25T21:15:36+00:00", "user_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": null, "sequence_name": null, "sender": "'Close CRM' via Integration tests ", "opens": [], "envelope": {"sender": [{"name": "", "email": "support@close.com"}], "date": "Wed, 25 Aug 2021 21:15:36 +0000", "bcc": [], "subject": "Your bulk edit for Airbyte is done", "cc": [], "in_reply_to": null, "message_id": "<162992613594.10130.17609834081606867635@closeio-tasktiger-other-7bd975b8f7-f5phd>", "from": [{"name": "'Close CRM' via Integration tests", "email": "integration-test@airbyte.io"}], "reply_to": [{"name": "Close CRM", "email": "support@close.com"}], "to": [{"name": "", "email": "integration-test@airbyte.io"}], "is_autoreply": false}, "need_smtp_credentials": false, "body_preview": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Change lead status to \"Interested\".\n\nAll 2 leads were modified successfully.\n\nThanks,\nClose Support\nsupport@cl", "id": "acti_iNuDRoYQ5w17aiH9BRIfN2gHbWBth11m4D16q9mxkdn", "direction": "outgoing", "date_scheduled": null, "cc": [], "attachments": [], "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "followup_sequence_delay": null, "users": [], "body_text_quoted": [{"expand": true, "text": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Change lead status to \"Interested\".\n\nAll 2 leads were modified successfully.\n\nThanks,\nClose Support\nsupport@close.com\n\n\n"}], "body_html_quoted": [{"expand": true, "html": "Hello Jean,
\n
\nYour bulk edit in Close was completed successfully.
\n
\nSearch query: *
\nAction: Change lead status to \"Interested\".
\n
\nAll 2 leads were modified successfully.
\n
\nThanks,
\nClose Support
\nsupport@close.com
\n
\n
"}], "references": [], "contact_id": null, "body_text": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Change lead status to \"Interested\".\n\nAll 2 leads were modified successfully.\n\nThanks,\nClose Support\nsupport@close.com\n\n\n", "template_name": null, "has_reply": false, "date_updated": "2022-11-08T12:36:05.979000+00:00", "status": "sent", "send_attempts": [], "to": ["integration-test@airbyte.io"], "followup_sequence_id": null}, "emitted_at": 1670413439976} +{"stream": "email_activities", "data": {"opens_summary": null, "send_as_id": null, "bcc": [], "subject": "Your bulk edit for Airbyte is done", "updated_by_name": null, "sequence_subscription_id": null, "thread_id": "acti_3rQgtNnE0L7Wo90WzgOXcbfSR2WCjOBipMrAq41yJFE", "in_reply_to_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "bulk_email_action_id": null, "date_created": "2021-08-25T21:03:54+00:00", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "sequence_id": null, "message_ids": ["<162992543485.16564.1574709800437653559@closeio-tasktiger-other-7bd975b8f7-x9jpv>"], "_type": "Email", "updated_by": null, "template_id": null, "body_html": "Hello Jean,
\n
\nYour bulk edit in Close was completed successfully.
\n
\nSearch query: *
\nAction: Set custom field "Lead Owner" to "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg".
\n
\nAll 2 leads were modified successfully.
\n
\nThanks,
\nClose Support
\nsupport@close.com
\n
\n
\n", "date_sent": "2021-08-25T21:03:54+00:00", "created_by_name": null, "activity_at": "2021-08-25T21:03:54+00:00", "user_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": null, "sequence_name": null, "sender": "'Close CRM' via Integration tests ", "opens": [], "envelope": {"sender": [{"name": "", "email": "support@close.com"}], "date": "Wed, 25 Aug 2021 21:03:54 +0000", "bcc": [], "subject": "Your bulk edit for Airbyte is done", "cc": [], "in_reply_to": null, "message_id": "<162992543485.16564.1574709800437653559@closeio-tasktiger-other-7bd975b8f7-x9jpv>", "from": [{"name": "'Close CRM' via Integration tests", "email": "integration-test@airbyte.io"}], "reply_to": [{"name": "Close CRM", "email": "support@close.com"}], "to": [{"name": "", "email": "integration-test@airbyte.io"}], "is_autoreply": false}, "need_smtp_credentials": false, "body_preview": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Set custom field \"Lead Owner\" to \"user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg\".\n\nAll 2 leads were modifie", "id": "acti_6pzzBcXnRUrC7ClGxkbfyifOL0tKELXmDQsGffzFx8N", "direction": "outgoing", "date_scheduled": null, "cc": [], "attachments": [], "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "followup_sequence_delay": null, "users": [], "body_text_quoted": [{"expand": true, "text": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Set custom field \"Lead Owner\" to \"user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg\".\n\nAll 2 leads were modified successfully.\n\nThanks,\nClose Support\nsupport@close.com\n\n\n"}], "body_html_quoted": [{"expand": true, "html": "Hello Jean,
\n
\nYour bulk edit in Close was completed successfully.
\n
\nSearch query: *
\nAction: Set custom field \"Lead Owner\" to \"user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg\".
\n
\nAll 2 leads were modified successfully.
\n
\nThanks,
\nClose Support
\nsupport@close.com
\n
\n
"}], "references": [], "contact_id": null, "body_text": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Set custom field \"Lead Owner\" to \"user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg\".\n\nAll 2 leads were modified successfully.\n\nThanks,\nClose Support\nsupport@close.com\n\n\n", "template_name": null, "has_reply": false, "date_updated": "2022-11-08T12:36:06.154000+00:00", "status": "sent", "send_attempts": [], "to": ["integration-test@airbyte.io"], "followup_sequence_id": null}, "emitted_at": 1670413439978} +{"stream": "email_activities", "data": {"opens_summary": null, "send_as_id": null, "bcc": [], "subject": "Airbyte Follow-up", "updated_by_name": "Jean Lafleur", "sequence_subscription_id": null, "thread_id": "acti_XFp5upc2w8MawOLJ89I5LNlWOYcJLBrHp6UOFOTfN0T", "in_reply_to_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "bulk_email_action_id": null, "date_created": "2021-08-18T10:35:50.165000+00:00", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "sequence_id": null, "message_ids": [], "_type": "Email", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "body_html": "Hi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "date_sent": null, "created_by_name": "Jean Lafleur", "activity_at": "2021-08-18T10:35:50.165000+00:00", "user_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_name": null, "sender": null, "opens": [], "envelope": {"sender": [], "date": "Wed, 18 Aug 2021 10:35:50 -0000", "bcc": [], "subject": "Airbyte Follow-up", "cc": [], "in_reply_to": null, "message_id": null, "from": [], "reply_to": [], "to": [{"name": "", "email": "bluth@close.com"}], "is_autoreply": false}, "need_smtp_credentials": false, "body_preview": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur ", "id": "acti_8MOghgAFLMW70Zj8pMTUA0NozWrEKeyckt4kFJcx65L", "direction": "outgoing", "date_scheduled": null, "cc": [], "attachments": [], "email_account_id": null, "followup_sequence_delay": null, "users": [], "body_text_quoted": [{"expand": true, "text": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "body_html_quoted": [{"expand": true, "html": "Hi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
"}], "references": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "body_text": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "template_name": "Email 2 - Follow-up #1", "has_reply": false, "date_updated": "2021-08-18T10:36:10.974000+00:00", "status": "draft", "send_attempts": [], "to": ["bluth@close.com"], "followup_sequence_id": null}, "emitted_at": 1670413439982} +{"stream": "email_activities", "data": {"opens_summary": null, "send_as_id": null, "bcc": [], "subject": "Pic", "updated_by_name": null, "sequence_subscription_id": null, "thread_id": "acti_v9S0gdPWzRUqjj2taSmmdfigKanA9tThaFe46FtcXGO", "in_reply_to_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "bulk_email_action_id": null, "date_created": "2021-07-26T09:08:50+00:00", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "sequence_id": null, "message_ids": ["<56EC0E81-FE10-40C6-ACF8-8B448B510DFD@gmail.com>"], "_type": "Email", "updated_by": null, "template_id": null, "body_html": "", "date_sent": null, "created_by_name": null, "activity_at": "2021-07-26T09:08:50+00:00", "user_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": null, "sequence_name": null, "sender": "Irina Grankova ", "opens": [], "envelope": {"sender": [{"name": "Irina Grankova", "email": "irina.grankova@gmail.com"}], "date": "Mon, 26 Jul 2021 12:08:50 +0300", "bcc": [], "subject": "Pic", "cc": [], "in_reply_to": null, "message_id": "<56EC0E81-FE10-40C6-ACF8-8B448B510DFD@gmail.com>", "from": [{"name": "Irina Grankova", "email": "irina.grankova@gmail.com"}], "reply_to": [], "to": [{"name": "", "email": "iryna.grankova@globallogic.com"}], "is_autoreply": false}, "need_smtp_credentials": false, "body_preview": null, "id": "acti_8ylFXNqFPRAesiUZ63CiHVB4MsHwNhD8TlDpvIGJG8Z", "direction": "incoming", "date_scheduled": null, "cc": [], "attachments": [{"size": 144978, "content_type": "image/jpeg", "filename": "image0.jpeg", "content_id": null, "url": "https://app.close.com/go/email/acti_8ylFXNqFPRAesiUZ63CiHVB4MsHwNhD8TlDpvIGJG8Z/attachment/0/"}], "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "followup_sequence_delay": null, "users": [], "body_text_quoted": null, "body_html_quoted": null, "references": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "body_text": "", "template_name": null, "has_reply": false, "date_updated": "2022-11-08T15:58:52.109000+00:00", "status": "inbox", "send_attempts": [], "to": ["iryna.grankova@globallogic.com"], "followup_sequence_id": null}, "emitted_at": 1670413439989} +{"stream": "email_activities", "data": {"opens_summary": null, "send_as_id": null, "bcc": [], "subject": "Welcome to Close, Jean!", "updated_by_name": "Jean Lafleur", "sequence_subscription_id": null, "thread_id": "acti_dtGBVpRrqQszIPQgvEhqTGBz3fA5PYptEc4lmVWNUKm", "in_reply_to_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "bulk_email_action_id": null, "date_created": "2021-07-13T11:39:04.130000+00:00", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "sequence_id": null, "message_ids": [], "_type": "Email", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "template_id": null, "body_html": "Hi Jean!

You can send, receive, and track your email conversations all within Close.

Try sending an outgoing email - click on the reply arrow and use an Email Template. You can now check off the Task!

See the Notes on this Lead and follow the Getting Started Guide to get set up as quickly as possible.

Let's make it happen!", "date_sent": null, "created_by_name": "Jean Lafleur", "activity_at": "2021-07-13T11:39:04.130000+00:00", "user_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_name": null, "sender": "Steli Efti ", "opens": [], "envelope": {"sender": [{"name": "Steli Efti", "email": "sales@close.com"}], "date": "Tue, 13 Jul 2021 11:39:04 +0000", "bcc": [], "subject": "Welcome to Close, Jean!", "cc": [], "in_reply_to": null, "message_id": "<162617634412.13.2638379749228562382@closeio-web-85678dcd7b-xdcf7>", "from": [{"name": "Steli Efti", "email": "sales@close.com"}], "reply_to": [{"name": "", "email": "sales@close.com"}], "to": [{"name": "", "email": "integration-test@airbyte.io"}], "is_autoreply": false}, "need_smtp_credentials": false, "body_preview": "Hi Jean!\n\nYou can send, receive, and track your email conversations all within Close.\n\nTry sending an outgoing email - click on the reply arrow and use an Email Templat", "id": "acti_Ags7x68KOMv3dKgtYWmrdFNCn16g0Wns0HSCY5L5nIm", "direction": "incoming", "date_scheduled": null, "cc": [], "attachments": [], "email_account_id": null, "followup_sequence_delay": null, "users": [], "body_text_quoted": [{"expand": true, "text": "Hi Jean!\n\nYou can send, receive, and track your email conversations all within Close.\n\nTry sending an outgoing email - click on the reply arrow and use an Email Template. You can now check off the Task!\n\nSee the Notes on this Lead and follow the Getting Started Guide to get set up as quickly as possible.\n\nLet's make it happen!"}], "body_html_quoted": [{"expand": true, "html": "Hi Jean!

You can send, receive, and track your email conversations all within Close.

Try sending an outgoing email - click on the reply arrow and use an Email Template. You can now check off the Task!

See the Notes on this Lead and follow the Getting Started Guide to get set up as quickly as possible.

Let's make it happen!"}], "references": [], "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "body_text": "Hi Jean!\n\nYou can send, receive, and track your email conversations all within Close.\n\nTry sending an outgoing email - click on the reply arrow and use an Email Template. You can now check off the Task!\n\nSee the Notes on this Lead and follow the Getting Started Guide to get set up as quickly as possible.\n\nLet's make it happen!", "template_name": null, "has_reply": false, "date_updated": "2021-07-13T11:39:04.140000+00:00", "status": "inbox", "send_attempts": [], "to": ["integration-test@airbyte.io"], "followup_sequence_id": null}, "emitted_at": 1670413439992} +{"stream": "email_activities", "data": {"opens_summary": null, "send_as_id": null, "bcc": [], "subject": "Missed call", "updated_by_name": "Jean Lafleur", "sequence_subscription_id": null, "thread_id": "acti_FrMniUW4fyqPxIyOEuuZN2QzkJF5tY3Ny2Q1nhimPEK", "in_reply_to_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "bulk_email_action_id": null, "date_created": "2021-07-05T11:39:00.850000+00:00", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "sequence_id": null, "message_ids": [], "_type": "Email", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "template_id": null, "body_html": "Hi Jean!

I just saw your missed call. Sorry, I've been working hard on my illusions. Will call you back when I'm free.

Just wanted to let you know, I'm still interested in your offer. Hope I'm not making a huge mistake...

Cheers,
Gob", "date_sent": null, "created_by_name": "Jean Lafleur", "activity_at": "2021-07-05T11:39:00.850000+00:00", "user_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_name": null, "sender": "bluth@close.com", "opens": [], "envelope": {"sender": [{"name": "", "email": "bluth@close.com"}], "date": "Tue, 13 Jul 2021 11:39:04 +0000", "bcc": [], "subject": "Missed call", "cc": [], "in_reply_to": null, "message_id": "<162617634457.13.866605428580538299@closeio-web-85678dcd7b-xdcf7>", "from": [{"name": "", "email": "bluth@close.com"}], "reply_to": [], "to": [{"name": "", "email": "integration-test@airbyte.io"}], "is_autoreply": false}, "need_smtp_credentials": false, "body_preview": "Hi Jean!\n\nI just saw your missed call. Sorry, I've been working hard on my illusions. Will call you back when I'm free.\n\nJust wanted to let you know, I'm still interested in your offer. Hope I'm not m", "id": "acti_T0UrwXOaxgA0kzhGA5Zx0hDWgP7sy5ihKRivMlQWsLV", "direction": "incoming", "date_scheduled": null, "cc": [], "attachments": [], "email_account_id": null, "followup_sequence_delay": null, "users": [], "body_text_quoted": [{"expand": true, "text": "Hi Jean!\n\nI just saw your missed call. Sorry, I've been working hard on my illusions. Will call you back when I'm free.\n\nJust wanted to let you know, I'm still interested in your offer. Hope I'm not making a huge mistake...\n\nCheers,\nGob"}], "body_html_quoted": [{"expand": true, "html": "Hi Jean!

I just saw your missed call. Sorry, I've been working hard on my illusions. Will call you back when I'm free.

Just wanted to let you know, I'm still interested in your offer. Hope I'm not making a huge mistake...

Cheers,
Gob"}], "references": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "body_text": "Hi Jean!\n\nI just saw your missed call. Sorry, I've been working hard on my illusions. Will call you back when I'm free.\n\nJust wanted to let you know, I'm still interested in your offer. Hope I'm not making a huge mistake...\n\nCheers,\nGob", "template_name": null, "has_reply": false, "date_updated": "2021-07-13T11:39:04.595000+00:00", "status": "inbox", "send_attempts": [], "to": ["integration-test@airbyte.io"], "followup_sequence_id": null}, "emitted_at": 1670413439996} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n ", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "activity_at": "2022-11-09T12:54:23.167000+00:00", "subject": "Test Lead + Airbyte", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "irina.grankova@gmail.com", "name": ""}], "subject": "Test Lead + Airbyte", "message_id": "<166799846322.15922.4962027989641879748@smtpgw.close.com>", "bcc": [], "date": "Wed, 09 Nov 2022 12:54:23 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-09T12:54:03.668000+00:00", "date_updated": "2022-11-09T13:39:37.547000+00:00", "to": ["irina.grankova@gmail.com"], "has_reply": false, "send_as_id": null, "template_name": "Email 1 - Intro", "opens_summary": "Opened by irina.grankova@gmail.com (2022-11-09)", "date_sent": "2022-11-09T12:54:23.167000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Iryna,

I'm Jean with Airbyte. We help companies in the space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead and show you what we're working on.

Are you available for a quick call tomorrow afternoon?"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166799846322.15922.4962027989641879748@smtpgw.close.com>", "<166799846322.15922.14988047742178474967@smtpgw.close.com>"], "created_by_name": "Jean Lafleur", "body_text": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-09T13:39:37.547000+00:00", "ip_address": "104.28.131.168", "user_agent": "Mozilla/5.0", "opened_by": "irina.grankova@gmail.com"}], "cc": [], "body_html": "Hi Iryna,

I'm Jean with Airbyte. We help companies in the space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "direction": "outgoing", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "updated_by_name": "Jean Lafleur", "sequence_name": null, "sequence_id": null, "thread_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440814} +{"stream": "email_activities", "data": {"status": "inbox", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting 2\nSaturday Nov 12, 2022 \u22c5 8pm \u2013 9pm\nEastern European Time - Kyiv\n\n\n\nOrganizer\niryna.grankova@airbyte.io\niryna.grankova@airbyte.io\n\n", "updated_by": null, "id": "acti_5Y0g1Ty898ORU1yMffesNiTs3I4RvFdWWrTErpmJmYb", "template_id": null, "activity_at": "2022-11-09T12:42:01+00:00", "subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [{"size": 631, "content_type": "text/calendar", "filename": "file.ics", "content_id": null, "url": "https://app.close.com/go/email/acti_5Y0g1Ty898ORU1yMffesNiTs3I4RvFdWWrTErpmJmYb/attachment/0/"}, {"size": 631, "content_type": "application/ics", "filename": "invite.ics", "content_id": null, "url": "https://app.close.com/go/email/acti_5Y0g1Ty898ORU1yMffesNiTs3I4RvFdWWrTErpmJmYb/attachment/1/"}], "references": [], "envelope": {"from": [{"email": "irina.grankova@gmail.com", "name": ""}], "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}], "subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "message_id": "<000000000000a8d33605ed08fb3c@google.com>", "bcc": [], "date": "Wed, 09 Nov 2022 12:42:01 +0000", "in_reply_to": null, "cc": [], "reply_to": [{"email": "irina.grankova@gmail.com", "name": ""}], "is_autoreply": true, "sender": [{"email": "calendar-notification@google.com", "name": "Google Calendar"}]}, "_type": "Email", "date_created": "2022-11-09T12:42:01+00:00", "date_updated": "2022-11-09T12:42:06.830000+00:00", "to": ["iryna.grankova@airbyte.io"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n Test meeting 2
\u00a0
irina.grankova@gmail.com has accepted this invitation.
\u00a0

When

Saturday Nov 12, 2022 \u22c5 8pm \u2013 9pm (Eastern European Time - Kyiv)

Invitation from Google Calendar

You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to Calendar settings, select this calendar, and change \"Other notifications\".

Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. Learn more

"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<000000000000a8d33605ed08fb3c@google.com>"], "created_by_name": null, "body_text": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting 2\nSaturday Nov 12, 2022 \u22c5 8pm \u2013 9pm\nEastern European Time - Kyiv\n\n\n\nOrganizer\niryna.grankova@airbyte.io\niryna.grankova@airbyte.io\n\nGuests\niryna.grankova@airbyte.io - organizer\nirina.grankova@gmail.com\nView all guest info \nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MWRlcDU1cDZtamY0MGxnYnJ2OXI5ajlocG8gaXJ5bmEuZ3JhbmtvdmFAYWlyYnl0ZS5pbw&tok=MjUjaXJ5bmEuZ3JhbmtvdmFAYWlyYnl0ZS5pbzE2Y2ZiMDdkMGQzOTk4OGFmYzI1NGVmYTE3ODEzYzBlNGQ0M2NhMDE&ctz=Europe%2FKiev&hl=en&es=1\n\n~~//~~\nInvitation from Google Calendar: https://calendar.google.com/calendar/\n\nYou are receiving this email because you are an attendee on the event. To \nstop receiving future updates for this event, decline this event.\n\nForwarding this invitation could allow any recipient to send a response to \nthe organizer, be added to the guest list, invite others regardless of \ntheir own invitation status, or modify your RSVP.\n\nLearn more https://support.google.com/calendar/answer/37135#forwarding\n", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n Test meeting 2
 
irina.grankova@gmail.com has accepted this invitation.
 

When

Saturday Nov 12, 2022 \u22c5 8pm \u2013 9pm (Eastern European Time - Kyiv)

Invitation from Google Calendar

You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to Calendar settings, select this calendar, and change \"Other notifications\".

Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. Learn more

", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting 2\nSaturday Nov 12, 2022 \u22c5 8pm \u2013 9pm\nEastern European Time - Kyiv\n\n\n\nOrganizer\niryna.grankova@airbyte.io\niryna.grankova@airbyte.io\n\nGuests\niryna.grankova@airbyte.io - organizer\nirina.grankova@gmail.com\nView all guest info \nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MWRlcDU1cDZtamY0MGxnYnJ2OXI5ajlocG8gaXJ5bmEuZ3JhbmtvdmFAYWlyYnl0ZS5pbw&tok=MjUjaXJ5bmEuZ3JhbmtvdmFAYWlyYnl0ZS5pbzE2Y2ZiMDdkMGQzOTk4OGFmYzI1NGVmYTE3ODEzYzBlNGQ0M2NhMDE&ctz=Europe%2FKiev&hl=en&es=1\n\n~~//~~\nInvitation from Google Calendar: https://calendar.google.com/calendar/\n\nYou are receiving this email because you are an attendee on the event. To \nstop receiving future updates for this event, decline this event.\n\nForwarding this invitation could allow any recipient to send a response to \nthe organizer, be added to the guest list, invite others regardless of \ntheir own invitation status, or modify your RSVP.\n\nLearn more https://support.google.com/calendar/answer/37135#forwarding\n"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "incoming", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "updated_by_name": null, "sequence_name": null, "sequence_id": null, "thread_id": "acti_ZtrsNQMEmg7RwStpMzckQc22tjvbESmIdfdBkChH7s5", "need_smtp_credentials": false, "sender": "irina.grankova@gmail.com"}, "emitted_at": 1670413440816} +{"stream": "email_activities", "data": {"status": "inbox", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "updated_by": null, "id": "acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa", "template_id": null, "activity_at": "2022-11-09T12:32:37+00:00", "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [{"size": 1206, "content_type": "text/calendar", "filename": "file.ics", "content_id": null, "url": "https://app.close.com/go/email/acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa/attachment/0/"}, {"size": 1206, "content_type": "application/ics", "filename": "invite.ics", "content_id": null, "url": "https://app.close.com/go/email/acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa/attachment/1/"}], "references": [], "envelope": {"from": [{"email": "irina.grankova@gmail.com", "name": ""}], "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}], "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "message_id": "<0000000000000d111305ed08dada@google.com>", "bcc": [], "date": "Wed, 09 Nov 2022 12:32:37 +0000", "in_reply_to": null, "cc": [], "reply_to": [{"email": "irina.grankova@gmail.com", "name": ""}], "is_autoreply": true, "sender": [{"email": "calendar-notification@google.com", "name": "Google Calendar"}]}, "_type": "Email", "date_created": "2022-11-09T12:32:37+00:00", "date_updated": "2022-11-09T12:32:49.521000+00:00", "to": ["iryna.grankova@globallogic.com"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n Test meeting
\u00a0
irina.grankova@gmail.com has accepted this invitation.
\u00a0

When

Friday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm (Eastern European Time - Kyiv)

Invitation from Google Calendar

You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to Calendar settings, select this calendar, and change \"Other notifications\".

Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. Learn more

"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<0000000000000d111305ed08dada@google.com>"], "created_by_name": null, "body_text": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6rEQC4MxPVFKSfql?domain=meet.google.com\n\n\n\t\nJoin by phone\n(GB) +44 20 3937 0463\nPIN: 318167082\n\nMore phone numbers\nhttps://protect-us.mimecast.com/s/bAkfCJ6xR7CwYG27tGX2ya?domain=tel.meet\n\n\nOrganizer\niryna.grankova@globallogic.com\niryna.grankova@globallogic.com\n\nGuests\niryna.grankova@globallogic.com - organizer\nirina.grankova@gmail.com\nView all guest info \nhttps://protect-us.mimecast.com/s/QMWsCKryR5iWngYjC3LjFf?domain=calendar.google.com\n\n~~//~~\nInvitation from Google Calendar: https://protect-us.mimecast.com/s/nKJWCL9zR5i91xgJfmFOtP?domain=calendar.google.com\n\nYou are receiving this email because you are an attendee on the event. To \nstop receiving future updates for this event, decline this event.\n\nForwarding this invitation could allow any recipient to send a response to \nthe organizer, be added to the guest list, invite others regardless of \ntheir own invitation status, or modify your RSVP.\n\nLearn more https://protect-us.mimecast.com/s/am2dCM8A65U3ZKLQfQyCij?domain=support.google.com\n", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n Test meeting
 
irina.grankova@gmail.com has accepted this invitation.
 

When

Friday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm (Eastern European Time - Kyiv)

Invitation from Google Calendar

You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to Calendar settings, select this calendar, and change \"Other notifications\".

Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. Learn more

\n", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6rEQC4MxPVFKSfql?domain=meet.google.com\n\n\n\t\nJoin by phone\n(GB) +44 20 3937 0463\nPIN: 318167082\n\nMore phone numbers\nhttps://protect-us.mimecast.com/s/bAkfCJ6xR7CwYG27tGX2ya?domain=tel.meet\n\n\nOrganizer\niryna.grankova@globallogic.com\niryna.grankova@globallogic.com\n\nGuests\niryna.grankova@globallogic.com - organizer\nirina.grankova@gmail.com\nView all guest info \nhttps://protect-us.mimecast.com/s/QMWsCKryR5iWngYjC3LjFf?domain=calendar.google.com\n\n~~//~~\nInvitation from Google Calendar: https://protect-us.mimecast.com/s/nKJWCL9zR5i91xgJfmFOtP?domain=calendar.google.com\n\nYou are receiving this email because you are an attendee on the event. To \nstop receiving future updates for this event, decline this event.\n\nForwarding this invitation could allow any recipient to send a response to \nthe organizer, be added to the guest list, invite others regardless of \ntheir own invitation status, or modify your RSVP.\n\nLearn more https://protect-us.mimecast.com/s/am2dCM8A65U3ZKLQfQyCij?domain=support.google.com\n"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "incoming", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "updated_by_name": null, "sequence_name": null, "sequence_id": null, "thread_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "need_smtp_credentials": false, "sender": "irina.grankova@gmail.com"}, "emitted_at": 1670413440818} +{"stream": "email_activities", "data": {"status": "inbox", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLi", "updated_by": null, "id": "acti_90yRG8Hy4yCw7kRWEfJTRmf6QjmPseSWCxCLnwcSJfQ", "template_id": null, "activity_at": "2022-11-09T11:30:58+00:00", "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [{"size": 1206, "content_type": "text/calendar", "filename": "file.ics", "content_id": null, "url": "https://app.close.com/go/email/acti_90yRG8Hy4yCw7kRWEfJTRmf6QjmPseSWCxCLnwcSJfQ/attachment/0/"}, {"size": 1206, "content_type": "application/ics", "filename": "invite.ics", "content_id": null, "url": "https://app.close.com/go/email/acti_90yRG8Hy4yCw7kRWEfJTRmf6QjmPseSWCxCLnwcSJfQ/attachment/1/"}], "references": [], "envelope": {"from": [{"email": "irina.grankova@gmail.com", "name": ""}], "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}], "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "message_id": "<0000000000009b99c605ed07fdaf@google.com>", "bcc": [], "date": "Wed, 09 Nov 2022 11:30:58 +0000", "in_reply_to": null, "cc": [], "reply_to": [{"email": "irina.grankova@gmail.com", "name": ""}], "is_autoreply": true, "sender": [{"email": "calendar-notification@google.com", "name": "Google Calendar"}]}, "_type": "Email", "date_created": "2022-11-09T11:30:58+00:00", "date_updated": "2022-11-09T11:31:11.939000+00:00", "to": ["iryna.grankova@globallogic.com"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n Test meeting
\u00a0
irina.grankova@gmail.com has accepted this invitation.
\u00a0

When

Wednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm (Eastern European Time - Kyiv)

Invitation from Google Calendar

You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to Calendar settings, select this calendar, and change \"Other notifications\".

Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. Learn more

"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<0000000000009b99c605ed07fdaf@google.com>"], "created_by_name": null, "body_text": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLiqB6yJSowlDc?domain=meet.google.com\n\n\n\t\nJoin by phone\n(GB) +44 20 3937 0463\nPIN: 318167082\n\nMore phone numbers\nhttps://protect-us.mimecast.com/s/mRXXC0R7BXCB39OnhDVap6?domain=tel.meet\n\n\nOrganizer\niryna.grankova@globallogic.com\niryna.grankova@globallogic.com\n\nGuests\niryna.grankova@globallogic.com - organizer\nirina.grankova@gmail.com\nView all guest info \nhttps://protect-us.mimecast.com/s/bSDoCgJEPQHy2jXvC2d9qf?domain=calendar.google.com\n\n~~//~~\nInvitation from Google Calendar: https://protect-us.mimecast.com/s/HBvSCjRKPOCmqwLzC7efZi?domain=calendar.google.com\n\nYou are receiving this email because you are an attendee on the event. To \nstop receiving future updates for this event, decline this event.\n\nForwarding this invitation could allow any recipient to send a response to \nthe organizer, be added to the guest list, invite others regardless of \ntheir own invitation status, or modify your RSVP.\n\nLearn more https://protect-us.mimecast.com/s/yispCkRLPOCBQRVDhJsq8W?domain=support.google.com\n", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n Test meeting
 
irina.grankova@gmail.com has accepted this invitation.
 

When

Wednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm (Eastern European Time - Kyiv)

Invitation from Google Calendar

You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to Calendar settings, select this calendar, and change \"Other notifications\".

Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. Learn more

\n", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLiqB6yJSowlDc?domain=meet.google.com\n\n\n\t\nJoin by phone\n(GB) +44 20 3937 0463\nPIN: 318167082\n\nMore phone numbers\nhttps://protect-us.mimecast.com/s/mRXXC0R7BXCB39OnhDVap6?domain=tel.meet\n\n\nOrganizer\niryna.grankova@globallogic.com\niryna.grankova@globallogic.com\n\nGuests\niryna.grankova@globallogic.com - organizer\nirina.grankova@gmail.com\nView all guest info \nhttps://protect-us.mimecast.com/s/bSDoCgJEPQHy2jXvC2d9qf?domain=calendar.google.com\n\n~~//~~\nInvitation from Google Calendar: https://protect-us.mimecast.com/s/HBvSCjRKPOCmqwLzC7efZi?domain=calendar.google.com\n\nYou are receiving this email because you are an attendee on the event. To \nstop receiving future updates for this event, decline this event.\n\nForwarding this invitation could allow any recipient to send a response to \nthe organizer, be added to the guest list, invite others regardless of \ntheir own invitation status, or modify your RSVP.\n\nLearn more https://protect-us.mimecast.com/s/yispCkRLPOCBQRVDhJsq8W?domain=support.google.com\n"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "incoming", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "updated_by_name": null, "sequence_name": null, "sequence_id": null, "thread_id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "need_smtp_credentials": false, "sender": "irina.grankova@gmail.com"}, "emitted_at": 1670413440821} +{"stream": "email_activities", "data": {"status": "inbox", "body_preview": "Test\n\n\n", "updated_by": null, "id": "acti_EI3xv4nNGN7MNydTjlXHp5UmxEPKJhbpUtKf5lxg6Uq", "template_id": null, "activity_at": "2022-11-09T11:28:52+00:00", "subject": "Test", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "irina.grankova@gmail.com", "name": "Irina Grankova"}], "to": [{"email": "integration-test@airbyte.io", "name": ""}], "subject": "Test", "message_id": "", "bcc": [], "date": "Wed, 9 Nov 2022 13:28:52 +0200", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "globallogic@airbyte.io", "name": ""}]}, "_type": "Email", "date_created": "2022-11-09T11:28:52+00:00", "date_updated": "2022-11-09T11:29:03.355000+00:00", "to": ["integration-test@airbyte.io"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Test
\n
\n
"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": [""], "created_by_name": null, "body_text": "Test\n\n\n", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "Test
\n
\n
\n", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Test\n\n\n"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "incoming", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "updated_by_name": null, "sequence_name": null, "sequence_id": null, "thread_id": "acti_p8SyYmT6CzaYHH6UQksWRLewcU6AjwNl1JbgPbp9Uai", "need_smtp_credentials": false, "sender": "Irina Grankova "}, "emitted_at": 1670413440823} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "activity_at": "2022-11-09T11:25:32.264000+00:00", "subject": "Airbyte Follow-up", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "irina.grankova@gmail.com", "name": ""}], "subject": "Airbyte Follow-up", "message_id": "<166799313228.17776.4777225093537029355@smtpgw.close.com>", "bcc": [], "date": "Wed, 09 Nov 2022 11:25:32 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-09T11:25:17.425000+00:00", "date_updated": "2022-11-09T11:29:01.481000+00:00", "to": ["irina.grankova@gmail.com"], "has_reply": false, "send_as_id": null, "template_name": "Email 2 - Follow-up #1", "opens_summary": "Opened by irina.grankova@gmail.com (2022-11-09)", "date_sent": "2022-11-09T11:25:32.264000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Iryna,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166799313228.17776.4777225093537029355@smtpgw.close.com>", "<166799313228.17776.3152755854733402602@smtpgw.close.com>"], "created_by_name": "Jean Lafleur", "body_text": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-09T11:29:01.480000+00:00", "ip_address": "104.28.131.166", "user_agent": "Mozilla/5.0", "opened_by": "irina.grankova@gmail.com"}], "cc": [], "body_html": "Hi Iryna,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "direction": "outgoing", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "updated_by_name": "Jean Lafleur", "sequence_name": null, "sequence_id": null, "thread_id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440825} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what w", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "activity_at": "2022-11-08T17:53:35.311000+00:00", "subject": "Close (Example\u00a0Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "sales@close.com", "name": "Steli Efti"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "message_id": "<166793001574.2977.16151555672380558322@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 17:53:36 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T17:53:35.598000+00:00", "date_updated": "2022-11-09T02:40:26.387000+00:00", "to": ["Steli Efti "], "has_reply": false, "send_as_id": null, "template_name": "Email 1 - Intro", "opens_summary": "Opened by Steli Efti (5 times, latest 2022-11-09)", "date_sent": "2022-11-08T17:53:35.311000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Steli,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166793001574.2977.16151555672380558322@smtpgw.close.com>", "<166793001574.2977.11109080189748637010@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T17:53:39.970000+00:00", "ip_address": "66.249.92.22", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Steli Efti "}, {"opened_at": "2022-11-08T17:53:43.225000+00:00", "ip_address": "66.249.83.109", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)", "opened_by": "Steli Efti "}, {"opened_at": "2022-11-08T19:21:22.529000+00:00", "ip_address": "66.249.84.173", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)", "opened_by": "Steli Efti "}, {"opened_at": "2022-11-08T22:08:24.873000+00:00", "ip_address": "66.249.84.173", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)", "opened_by": "Steli Efti "}, {"opened_at": "2022-11-09T02:40:26.387000+00:00", "ip_address": "104.28.57.228", "user_agent": "Mozilla/5.0", "opened_by": "Steli Efti "}], "cc": [], "body_html": "Hi Steli,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 1", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440827} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "activity_at": "2022-11-08T17:41:58.196000+00:00", "subject": "Close (Example\u00a0Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "support@close.com", "name": "Support"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "message_id": "<166792931876.62373.17646468751668935681@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 17:41:59 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T17:41:58.589000+00:00", "date_updated": "2022-11-08T17:42:03.103000+00:00", "to": ["Support "], "has_reply": false, "send_as_id": null, "template_name": "Email 1 - Intro", "opens_summary": "Opened by Support (2 times, latest 2022-11-08)", "date_sent": "2022-11-08T17:41:58.196000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Support,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792931876.62373.17646468751668935681@smtpgw.close.com>", "<166792931876.62373.6144271479235161876@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T17:42:01.966000+00:00", "ip_address": "66.249.92.22", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Support "}, {"opened_at": "2022-11-08T17:42:03.103000+00:00", "ip_address": "66.249.92.24", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Support "}], "cc": [], "body_html": "Hi Support,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 1", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440829} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "activity_at": "2022-11-08T17:15:11.279000+00:00", "subject": "Close (Example\u00a0Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "nick@close.com", "name": "Nick Persico"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "message_id": "<166792771182.46793.15708798519258202100@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 17:15:12 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T17:15:11.656000+00:00", "date_updated": "2022-11-08T17:15:14.724000+00:00", "to": ["Nick Persico "], "has_reply": false, "send_as_id": null, "template_name": "Email 1 - Intro", "opens_summary": "Opened by Nick Persico (2022-11-08)", "date_sent": "2022-11-08T17:15:11.279000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Nick,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792771182.46793.15708798519258202100@smtpgw.close.com>", "<166792771182.46793.6902395509032896353@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T17:15:14.724000+00:00", "ip_address": "66.249.92.10", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Nick Persico "}], "cc": [], "body_html": "Hi Nick,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 1", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440831} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you wha", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "activity_at": "2022-11-08T17:12:07.625000+00:00", "subject": "Close (Example\u00a0Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "success@close.com", "name": "Customer Success Team"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "message_id": "<166792752819.46698.4592611849180210253@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 17:12:08 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T17:12:07.975000+00:00", "date_updated": "2022-11-08T17:12:12.687000+00:00", "to": ["Customer Success Team "], "has_reply": false, "send_as_id": null, "template_name": "Email 1 - Intro", "opens_summary": "Opened by Customer Success Team (2 times, latest 2022-11-08)", "date_sent": "2022-11-08T17:12:07.625000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Customer,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_06TCoNKHiRvgz5eajOG5iM", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792752819.46698.4592611849180210253@smtpgw.close.com>", "<166792752819.46698.4097549043104142028@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T17:12:11.815000+00:00", "ip_address": "66.249.92.10", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Customer Success Team "}, {"opened_at": "2022-11-08T17:12:12.687000+00:00", "ip_address": "66.249.92.10", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Customer Success Team "}], "cc": [], "body_html": "Hi Customer,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 1", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440833} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- T", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "activity_at": "2022-11-08T16:48:47.166000+00:00", "subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "support@close.com", "name": "Support"}], "subject": "Airbyte Follow-up", "message_id": "<166792612773.32060.15386565426548563880@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 16:48:48 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T16:48:47.552000+00:00", "date_updated": "2022-11-08T16:50:41.545000+00:00", "to": ["Support "], "has_reply": false, "send_as_id": null, "template_name": "Email 2 - Follow-up #1", "opens_summary": "Opened by Support (2022-11-08)", "date_sent": "2022-11-08T16:48:47.166000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Support,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_7Zv78mWCJuul1Ipd4EDE32", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792612773.32060.15386565426548563880@smtpgw.close.com>", "<166792612773.32060.13475180684302654892@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T16:50:41.545000+00:00", "ip_address": "66.249.92.23", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Support "}], "cc": [], "body_html": "Hi Support,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 2", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440836} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "activity_at": "2022-11-08T16:36:07.226000+00:00", "subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "sales@close.com", "name": "Steli Efti"}], "subject": "Airbyte Follow-up", "message_id": "<166792536780.39994.6476676108875520271@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 16:36:08 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T16:36:07.646000+00:00", "date_updated": "2022-11-09T02:40:26.385000+00:00", "to": ["Steli Efti "], "has_reply": false, "send_as_id": null, "template_name": "Email 2 - Follow-up #1", "opens_summary": "Opened by Steli Efti (5 times, latest 2022-11-09)", "date_sent": "2022-11-08T16:36:07.226000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Steli,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792536780.39994.6476676108875520271@smtpgw.close.com>", "<166792536780.39994.10624245342771321646@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T16:36:14.654000+00:00", "ip_address": "66.249.92.23", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Steli Efti "}, {"opened_at": "2022-11-08T16:36:16.238000+00:00", "ip_address": "66.102.8.136", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)", "opened_by": "Steli Efti "}, {"opened_at": "2022-11-08T19:23:49.925000+00:00", "ip_address": "66.249.84.169", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)", "opened_by": "Steli Efti "}, {"opened_at": "2022-11-08T21:43:30.790000+00:00", "ip_address": "66.249.84.180", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)", "opened_by": "Steli Efti "}, {"opened_at": "2022-11-09T02:40:26.385000+00:00", "ip_address": "104.28.57.228", "user_agent": "Mozilla/5.0", "opened_by": "Steli Efti "}], "cc": [], "body_html": "Hi Steli,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 2", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440838} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- ", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "activity_at": "2022-11-08T16:24:31.194000+00:00", "subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "success@close.com", "name": "Customer Success Team"}], "subject": "Airbyte Follow-up", "message_id": "<166792467183.28936.13663569799747553498@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 16:24:32 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T16:24:31.650000+00:00", "date_updated": "2022-11-08T16:24:37.393000+00:00", "to": ["Customer Success Team "], "has_reply": false, "send_as_id": null, "template_name": "Email 2 - Follow-up #1", "opens_summary": "Opened by Customer Success Team (2022-11-08)", "date_sent": "2022-11-08T16:24:31.194000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Customer,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_174GiA85Ui8g1OuQUrzdWe", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792467183.28936.13663569799747553498@smtpgw.close.com>", "<166792467183.28936.4497117513938895080@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T16:24:37.393000+00:00", "ip_address": "66.249.92.22", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Customer Success Team "}], "cc": [], "body_html": "Hi Customer,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 2", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440840} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "activity_at": "2022-11-08T16:23:04.323000+00:00", "subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "nick@close.com", "name": "Nick Persico"}], "subject": "Airbyte Follow-up", "message_id": "<166792458488.29477.5187137325155036854@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 16:23:05 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T16:23:04.668000+00:00", "date_updated": "2022-11-08T20:44:30.910000+00:00", "to": ["Nick Persico "], "has_reply": false, "send_as_id": null, "template_name": "Email 2 - Follow-up #1", "opens_summary": "Opened by Nick Persico (2022-11-08)", "date_sent": "2022-11-08T16:23:04.323000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Nick,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_3J812U6VNcZBmBDEJ1iIdX", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792458488.29477.5187137325155036854@smtpgw.close.com>", "<166792458488.29477.3151986449249141034@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T20:44:30.910000+00:00", "ip_address": "35.231.92.0", "user_agent": "Superhuman", "opened_by": "Nick Persico "}], "cc": [], "body_html": "Hi Nick,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 2", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440842} +{"stream": "email_activities", "data": {"status": "inbox", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to tobiasfunke@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.com/", "updated_by": null, "id": "acti_kInKkIusbEQTcNwu982oG2ncXoGXOckJbYy1d6RgHGx", "template_id": null, "activity_at": "2022-11-08T16:09:09+00:00", "subject": "Delivery Status Notification (Failure)", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [{"size": 1450, "content_type": "image/png", "filename": "icon.png", "content_id": "", "url": "https://s3.amazonaws.com/closeio-email/attachment/e1c1c167b89e4f82a005b0372525677059b652f7292ffbfda0f069bfce89f4e8/icon.png"}], "references": ["<166792374433.22448.17907165931371313011@smtpgw.close.com>", "<166792374433.22448.16558415745556798661@smtpgw.close.com>"], "envelope": {"from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}], "subject": "Delivery Status Notification (Failure)", "message_id": "<636a7f25.c80a0220.659b6.8bba.GMR@mx.google.com>", "bcc": [], "date": "Tue, 08 Nov 2022 08:09:09 -0800 (PST)", "in_reply_to": "<166792374433.22448.16558415745556798661@smtpgw.close.com>", "cc": [], "reply_to": [], "is_autoreply": true, "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "_type": "Email", "date_created": "2022-11-08T16:09:09+00:00", "date_updated": "2022-11-08T16:28:54.140000+00:00", "to": ["iryna.grankova@globallogic.com"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to tobiasfunke@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: \"Jean Lafleur\" <iryna.grankova@globallogic.com>
\nSubject: Airbyte Follow-up
\nDate: Tue, 08 Nov 2022 16:09:04 +0000
\nTo: Tobias F\u00fcnke <tobiasfunke@close.com>
\n
\nHi Tobias,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
\"\"

"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<636a7f25.c80a0220.659b6.8bba.GMR@mx.google.com>"], "created_by_name": null, "body_text": "\n** Address not found **\n\nYour message wasn't delivered to tobiasfunke@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.com/s/vIO8C0R7BXCBvxZ9fwcWRl?domain=support.google.com\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://protect-us.mimecast.com/s/vIO8C0R7BXCBvxZ9fwcWRl?domain=support.google.com\nFrom: \"Jean Lafleur\" \nSubject: Airbyte Follow-up\nDate: Tue, 08 Nov 2022 16:09:04 +0000\nTo: Tobias F\u00fcnke \n\nHi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to tobiasfunke@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: \"Jean Lafleur\" <iryna.grankova@globallogic.com>
\nSubject: Airbyte Follow-up
\nDate: Tue, 08 Nov 2022 16:09:04 +0000
\nTo: Tobias F\u00fcnke <tobiasfunke@close.com>
\n
\nHi Tobias,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
\"\"

", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "\n** Address not found **\n\nYour message wasn't delivered to tobiasfunke@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.com/s/vIO8C0R7BXCBvxZ9fwcWRl?domain=support.google.com\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://protect-us.mimecast.com/s/vIO8C0R7BXCBvxZ9fwcWRl?domain=support.google.com\nFrom: \"Jean Lafleur\" \nSubject: Airbyte Follow-up\nDate: Tue, 08 Nov 2022 16:09:04 +0000\nTo: Tobias F\u00fcnke \n\nHi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "incoming", "contact_id": null, "updated_by_name": null, "sequence_name": null, "sequence_id": null, "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "need_smtp_credentials": false, "sender": "Mail Delivery Subsystem "}, "emitted_at": 1670413440844} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Th", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "activity_at": "2022-11-08T16:09:03.809000+00:00", "subject": "Airbyte Follow-up", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "tobiasfunke@close.com", "name": "Tobias F\u00fcnke"}], "subject": "Airbyte Follow-up", "message_id": "<166792374433.22448.16558415745556798661@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 16:09:04 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T16:09:04.170000+00:00", "date_updated": "2022-11-08T16:09:05.758000+00:00", "to": ["Tobias F\u00fcnke "], "has_reply": false, "send_as_id": null, "template_name": "Email 2 - Follow-up #1", "opens_summary": null, "date_sent": "2022-11-08T16:09:03.809000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Tobias,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_1rgSspOohLocAaucazbFbB", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792374433.22448.16558415745556798661@smtpgw.close.com>", "<166792374433.22448.17907165931371313011@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "Hi Tobias,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 2", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440846} +{"stream": "email_activities", "data": {"status": "inbox", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.co", "updated_by": null, "id": "acti_4FqtK5fUFc4M3CvT2mCEGHnXww1fWEJkRckW9WrIdKg", "template_id": null, "activity_at": "2022-11-08T15:44:23+00:00", "subject": "Delivery Status Notification (Failure)", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [{"size": 1450, "content_type": "image/png", "filename": "icon.png", "content_id": "", "url": "https://s3.amazonaws.com/closeio-email/attachment/f670d9e08ca53e6d8967e36b17ff67b93ba6648a92b7cc0d4b9019aa9d745408/icon.png"}], "references": ["<166792225784.2629.12825104744076060180@smtpgw.close.com>", "<166792225784.2629.13990873364570888607@smtpgw.close.com>"], "envelope": {"from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}], "subject": "Delivery Status Notification (Failure)", "message_id": "<636a7957.050a0220.76c16.8d69.GMR@mx.google.com>", "bcc": [], "date": "Tue, 08 Nov 2022 07:44:23 -0800 (PST)", "in_reply_to": "<166792225784.2629.13990873364570888607@smtpgw.close.com>", "cc": [], "reply_to": [], "is_autoreply": true, "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "_type": "Email", "date_created": "2022-11-08T15:44:23+00:00", "date_updated": "2022-11-08T16:28:55.347000+00:00", "to": ["iryna.grankova@globallogic.com"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: \"Jean Lafleur\" <iryna.grankova@globallogic.com>
\nSubject: (no subject)
\nDate: Tue, 08 Nov 2022 15:44:18 +0000
\nTo: thedarkknight@close.com
\n
\nTest\"\"

"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<636a7957.050a0220.76c16.8d69.GMR@mx.google.com>"], "created_by_name": null, "body_text": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.com/s/x_0dCzpzoxUqDBA5f4CcrT?domain=support.google.com\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://protect-us.mimecast.com/s/x_0dCzpzoxUqDBA5f4CcrT?domain=support.google.com\nFrom: \"Jean Lafleur\" \nSubject: (no subject)\nDate: Tue, 08 Nov 2022 15:44:18 +0000\nTo: thedarkknight@close.com\n\nTest", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: \"Jean Lafleur\" <iryna.grankova@globallogic.com>
\nSubject: (no subject)
\nDate: Tue, 08 Nov 2022 15:44:18 +0000
\nTo: thedarkknight@close.com
\n
\nTest\"\"

", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.com/s/x_0dCzpzoxUqDBA5f4CcrT?domain=support.google.com\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://protect-us.mimecast.com/s/x_0dCzpzoxUqDBA5f4CcrT?domain=support.google.com\nFrom: \"Jean Lafleur\" \nSubject: (no subject)\nDate: Tue, 08 Nov 2022 15:44:18 +0000\nTo: thedarkknight@close.com\n\nTest"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "incoming", "contact_id": null, "updated_by_name": null, "sequence_name": null, "sequence_id": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "need_smtp_credentials": false, "sender": "Mail Delivery Subsystem "}, "emitted_at": 1670413440848} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Test", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "template_id": null, "activity_at": "2022-11-08T15:44:17.803000+00:00", "subject": "(no subject)", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "thedarkknight@close.com", "name": ""}], "subject": "(no subject)", "message_id": "<166792225784.2629.13990873364570888607@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 15:44:18 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T15:43:48.819000+00:00", "date_updated": "2022-11-09T11:12:59.685000+00:00", "to": ["thedarkknight@close.com"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": "Opened by thedarkknight@close.com (2022-11-09)", "date_sent": "2022-11-08T15:44:17.803000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Test"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792225784.2629.13990873364570888607@smtpgw.close.com>", "<166792225784.2629.12825104744076060180@smtpgw.close.com>"], "created_by_name": "Jean Lafleur", "body_text": "Test", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-09T11:12:59.685000+00:00", "ip_address": "85.209.47.207", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}], "cc": [], "body_html": "Test", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Test"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "direction": "outgoing", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "updated_by_name": "Jean Lafleur", "sequence_name": null, "sequence_id": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440850} +{"stream": "email_activities", "data": {"status": "inbox", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "updated_by": null, "id": "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "template_id": null, "activity_at": "2022-11-08T15:21:52+00:00", "subject": "Delivery Status Notification (Failure)", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [{"size": 1450, "content_type": "image/png", "filename": "icon.png", "content_id": "", "url": "https://s3.amazonaws.com/closeio-email/attachment/87491bb4cf503fcf54914e498f339ac980fc90291081a7befaf5b0036f9b30f2/icon.png"}], "references": ["<166792090941.10645.8722656406065573871@smtpgw.close.com>", "<166792090941.10645.3407832652098417673@smtpgw.close.com>"], "envelope": {"from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}], "subject": "Delivery Status Notification (Failure)", "message_id": "<636a7410.630a0220.27b8e.b6e2.GMR@mx.google.com>", "bcc": [], "date": "Tue, 08 Nov 2022 07:21:52 -0800 (PST)", "in_reply_to": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "cc": [], "reply_to": [], "is_autoreply": true, "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "_type": "Email", "date_created": "2022-11-08T15:21:52+00:00", "date_updated": "2022-11-08T15:22:03.515000+00:00", "to": ["iryna.grankova@airbyte.io"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: Jean Lafleur <iryna.grankova@airbyte.io>
\nSubject: Bluth Company (Example\u00a0Lead) + Airbyte
\nDate: Tue, 08 Nov 2022 15:21:50 +0000
\nTo: Gob Bluth <bluth@close.com>
\n
\nHi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
\"\"

"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<636a7410.630a0220.27b8e.b6e2.GMR@mx.google.com>"], "created_by_name": null, "body_text": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer/6596\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\nFrom: Jean Lafleur \nSubject: Bluth Company (Example\u00a0Lead) + Airbyte\nDate: Tue, 08 Nov 2022 15:21:50 +0000\nTo: Gob Bluth \n\nHi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: Jean Lafleur <iryna.grankova@airbyte.io>
\nSubject: Bluth Company (Example\u00a0Lead) + Airbyte
\nDate: Tue, 08 Nov 2022 15:21:50 +0000
\nTo: Gob Bluth <bluth@close.com>
\n
\nHi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
\"\"

", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer/6596\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\nFrom: Jean Lafleur \nSubject: Bluth Company (Example\u00a0Lead) + Airbyte\nDate: Tue, 08 Nov 2022 15:21:50 +0000\nTo: Gob Bluth \n\nHi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "incoming", "contact_id": null, "updated_by_name": null, "sequence_name": null, "sequence_id": null, "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "need_smtp_credentials": false, "sender": "Mail Delivery Subsystem "}, "emitted_at": 1670413440852} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show y", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "activity_at": "2022-11-08T15:21:48.934000+00:00", "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "bluth@close.com", "name": "Gob Bluth"}], "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "message_id": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 15:21:50 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T15:21:49.243000+00:00", "date_updated": "2022-11-08T15:22:03.271000+00:00", "to": ["Gob Bluth "], "has_reply": false, "send_as_id": null, "template_name": "Email 1 - Intro", "opens_summary": "Opened by Gob Bluth (2022-11-08)", "date_sent": "2022-11-08T15:21:48.934000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
"}], "bulk_email_action_id": null, "sequence_subscription_id": "sub_77gWyXwSd44zuQaciQYW0O", "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166792090941.10645.3407832652098417673@smtpgw.close.com>", "<166792090941.10645.8722656406065573871@smtpgw.close.com>"], "created_by_name": null, "body_text": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T15:21:52.108000+00:00", "ip_address": "66.249.92.23", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "Gob Bluth "}], "cc": [], "body_html": "Hi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "outgoing", "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "updated_by_name": "Jean Lafleur", "sequence_name": "Sequence 1", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440854} +{"stream": "email_activities", "data": {"status": "inbox", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "updated_by": null, "id": "acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "template_id": null, "activity_at": "2022-11-08T12:58:48+00:00", "subject": "Delivery Status Notification (Failure)", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [{"size": 1450, "content_type": "image/png", "filename": "icon.png", "content_id": "", "url": "https://s3.amazonaws.com/closeio-email/attachment/1f7e236c6d1c046b794138a33f88a568156b3843c5c27d3f8486c27e9fec346a/icon.png"}], "references": ["<166791232468.5302.12366928756676498962@smtpgw.close.com>", "<166791232468.5302.9789676641910298968@smtpgw.close.com>"], "envelope": {"from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}], "subject": "Delivery Status Notification (Failure)", "message_id": "<636a5288.170a0220.f87e2.10cf.GMR@mx.google.com>", "bcc": [], "date": "Tue, 08 Nov 2022 04:58:48 -0800 (PST)", "in_reply_to": "<166791232468.5302.9789676641910298968@smtpgw.close.com>", "cc": [], "reply_to": [], "is_autoreply": true, "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "_type": "Email", "date_created": "2022-11-08T12:58:48+00:00", "date_updated": "2022-11-08T13:00:58.801000+00:00", "to": ["iryna.grankova@airbyte.io"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: Jean Lafleur <iryna.grankova@airbyte.io>
\nSubject: Airbyte Follow-up
\nDate: Tue, 08 Nov 2022 12:58:44 +0000
\nTo: bluth@close.com
\n
\nHi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
\"\"

"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<636a5288.170a0220.f87e2.10cf.GMR@mx.google.com>"], "created_by_name": null, "body_text": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer/6596\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\nFrom: Jean Lafleur \nSubject: Airbyte Follow-up\nDate: Tue, 08 Nov 2022 12:58:44 +0000\nTo: bluth@close.com\n\nHi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: Jean Lafleur <iryna.grankova@airbyte.io>
\nSubject: Airbyte Follow-up
\nDate: Tue, 08 Nov 2022 12:58:44 +0000
\nTo: bluth@close.com
\n
\nHi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
\"\"

", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer/6596\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\nFrom: Jean Lafleur \nSubject: Airbyte Follow-up\nDate: Tue, 08 Nov 2022 12:58:44 +0000\nTo: bluth@close.com\n\nHi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "incoming", "contact_id": null, "updated_by_name": null, "sequence_name": null, "sequence_id": null, "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "need_smtp_credentials": false, "sender": "Mail Delivery Subsystem "}, "emitted_at": 1670413440857} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur ", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "activity_at": "2022-11-08T12:58:44.679000+00:00", "subject": "Airbyte Follow-up", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "bluth@close.com", "name": ""}], "subject": "Airbyte Follow-up", "message_id": "<166791232468.5302.9789676641910298968@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 12:58:44 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T12:58:44.579000+00:00", "date_updated": "2022-11-08T12:58:47.565000+00:00", "to": ["bluth@close.com"], "has_reply": false, "send_as_id": null, "template_name": "Email 2 - Follow-up #1", "opens_summary": "Opened by bluth@close.com (2022-11-08)", "date_sent": "2022-11-08T12:58:44.679000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
"}], "bulk_email_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166791232468.5302.9789676641910298968@smtpgw.close.com>", "<166791232468.5302.12366928756676498962@smtpgw.close.com>"], "created_by_name": "Jean Lafleur", "body_text": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T12:58:47.565000+00:00", "ip_address": "66.249.92.10", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0", "opened_by": "bluth@close.com"}], "cc": [], "body_html": "Hi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "direction": "outgoing", "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "updated_by_name": "Jean Lafleur", "sequence_name": null, "sequence_id": null, "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440859} +{"stream": "email_activities", "data": {"status": "inbox", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mai", "updated_by": null, "id": "acti_Yc8SKxsCvKYEdmrOElcfbI4TeWAutmDsSG7mmHigzE8", "template_id": null, "activity_at": "2022-11-08T12:56:55+00:00", "subject": "Delivery Status Notification (Failure)", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [{"size": 1450, "content_type": "image/png", "filename": "icon.png", "content_id": "", "url": "https://s3.amazonaws.com/closeio-email/attachment/126941d2d18cb3a91e602dbe59eab599ee2f677694c80b32a48e93f805a500bb/icon.png"}], "references": ["<166791221256.1235.14063741572606059919@smtpgw.close.com>", "<166791221256.1235.11589873218010129427@smtpgw.close.com>"], "envelope": {"from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}], "subject": "Delivery Status Notification (Failure)", "message_id": "<636a5217.170a0220.675e1.11c0.GMR@mx.google.com>", "bcc": [], "date": "Tue, 08 Nov 2022 04:56:55 -0800 (PST)", "in_reply_to": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "cc": [], "reply_to": [], "is_autoreply": true, "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "_type": "Email", "date_created": "2022-11-08T12:56:55+00:00", "date_updated": "2022-11-08T13:00:57.698000+00:00", "to": ["iryna.grankova@airbyte.io"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: Jean Lafleur <iryna.grankova@airbyte.io>
\nSubject: Wayne Enterprises (Example\u00a0Lead) + Airbyte
\nDate: Tue, 08 Nov 2022 12:56:52 +0000
\nTo: thedarkknight@close.com
\n
\nHi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?\"\"

"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<636a5217.170a0220.675e1.11c0.GMR@mx.google.com>"], "created_by_name": null, "body_text": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer/6596\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\nFrom: Jean Lafleur \nSubject: Wayne Enterprises (Example\u00a0Lead) + Airbyte\nDate: Tue, 08 Nov 2022 12:56:52 +0000\nTo: thedarkknight@close.com\n\nHi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: Jean Lafleur <iryna.grankova@airbyte.io>
\nSubject: Wayne Enterprises (Example\u00a0Lead) + Airbyte
\nDate: Tue, 08 Nov 2022 12:56:52 +0000
\nTo: thedarkknight@close.com
\n
\nHi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?\"\"

", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer/6596\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\nFrom: Jean Lafleur \nSubject: Wayne Enterprises (Example\u00a0Lead) + Airbyte\nDate: Tue, 08 Nov 2022 12:56:52 +0000\nTo: thedarkknight@close.com\n\nHi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": null, "direction": "incoming", "contact_id": null, "updated_by_name": null, "sequence_name": null, "sequence_id": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "need_smtp_credentials": false, "sender": "Mail Delivery Subsystem "}, "emitted_at": 1670413440861} +{"stream": "email_activities", "data": {"status": "draft", "body_preview": "Test", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_XF6sSdUpFbve6PLReW4YrwwxTunoon1q7EAjkhiolZA", "template_id": null, "activity_at": "2022-11-08T12:55:49.388000+00:00", "subject": "Test", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "thedarkknight@close.com", "name": ""}], "subject": "Test", "message_id": null, "bcc": [], "date": "Tue, 08 Nov 2022 12:55:49 -0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T12:55:49.388000+00:00", "date_updated": "2022-11-08T12:55:54.125000+00:00", "to": ["thedarkknight@close.com"], "has_reply": false, "send_as_id": null, "template_name": null, "opens_summary": null, "date_sent": null, "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Test"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": [], "created_by_name": "Jean Lafleur", "body_text": "Test", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [], "cc": [], "body_html": "Test", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Test"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "direction": "outgoing", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "updated_by_name": "Jean Lafleur", "sequence_name": null, "sequence_id": null, "thread_id": "acti_diSbB5sLhZK1kkgpBgzl4dlojtN1Nt6MEvLPC5DEZpe", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440863} +{"stream": "email_activities", "data": {"status": "sent", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "activity_at": "2022-11-08T12:56:52.538000+00:00", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "attachments": [], "references": [], "envelope": {"from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "to": [{"email": "thedarkknight@close.com", "name": ""}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "bcc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "in_reply_to": null, "cc": [], "reply_to": [], "is_autoreply": false, "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "_type": "Email", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_updated": "2022-11-08T15:43:38.471000+00:00", "to": ["thedarkknight@close.com"], "has_reply": false, "send_as_id": null, "template_name": "Email 1 - Intro", "opens_summary": "Opened by thedarkknight@close.com (5+ times, latest 2022-11-08)", "date_sent": "2022-11-08T12:56:52.538000+00:00", "in_reply_to_id": null, "body_html_quoted": [{"expand": true, "html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?"}], "bulk_email_action_id": null, "sequence_subscription_id": null, "followup_sequence_id": null, "user_name": "Jean Lafleur", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "created_by_name": "Jean Lafleur", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "bcc": [], "send_attempts": [], "users": [], "opens": [{"opened_at": "2022-11-08T14:25:56.139000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T14:48:01.421000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T14:59:00.139000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T14:59:10.078000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T14:59:28.676000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T15:00:24.078000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T15:00:34.029000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T15:07:41.553000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T15:10:30.843000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T15:13:05.125000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T15:15:47.492000+00:00", "ip_address": "185.143.147.236", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}, {"opened_at": "2022-11-08T15:43:38.471000+00:00", "ip_address": "85.209.47.207", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42", "opened_by": "thedarkknight@close.com"}], "cc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "date_scheduled": null, "body_text_quoted": [{"expand": true, "text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?"}], "followup_sequence_delay": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "direction": "outgoing", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "updated_by_name": "Jean Lafleur", "sequence_name": null, "sequence_id": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "need_smtp_credentials": false, "sender": "Jean Lafleur "}, "emitted_at": 1670413440865} +{"stream": "email_thread_activities", "data": {"latest_emails": [{"sender": "'Close CRM' via Integration tests ", "id": "acti_iNuDRoYQ5w17aiH9BRIfN2gHbWBth11m4D16q9mxkdn", "cc": [], "status": "sent", "send_as_id": null, "envelope": {"message_id": "<162992613594.10130.17609834081606867635@closeio-tasktiger-other-7bd975b8f7-f5phd>", "sender": [{"name": "", "email": "support@close.com"}], "cc": [], "subject": "Your bulk edit for Airbyte is done", "bcc": [], "date": "Wed, 25 Aug 2021 21:15:36 +0000", "in_reply_to": null, "is_autoreply": false, "to": [{"name": "", "email": "integration-test@airbyte.io"}], "from": [{"name": "'Close CRM' via Integration tests", "email": "integration-test@airbyte.io"}], "reply_to": [{"name": "Close CRM", "email": "support@close.com"}]}, "date_updated": "2022-11-08T12:36:05.979000+00:00", "subject": "Your bulk edit for Airbyte is done", "body_preview": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Change lead status to \"Interested\".\n\nAll 2 leads were modified successfully.\n\nThanks,\nClose Support\nsupport@cl", "date_created": "2021-08-25T21:15:36+00:00", "has_attachments": false, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_sent": "2021-08-25T21:15:36+00:00", "opens_summary": null, "bcc": [], "direction": "outgoing", "to": ["integration-test@airbyte.io"]}, {"sender": "'Close CRM' via Integration tests ", "id": "acti_6pzzBcXnRUrC7ClGxkbfyifOL0tKELXmDQsGffzFx8N", "cc": [], "status": "sent", "send_as_id": null, "envelope": {"message_id": "<162992543485.16564.1574709800437653559@closeio-tasktiger-other-7bd975b8f7-x9jpv>", "sender": [{"name": "", "email": "support@close.com"}], "cc": [], "subject": "Your bulk edit for Airbyte is done", "bcc": [], "date": "Wed, 25 Aug 2021 21:03:54 +0000", "in_reply_to": null, "is_autoreply": false, "to": [{"name": "", "email": "integration-test@airbyte.io"}], "from": [{"name": "'Close CRM' via Integration tests", "email": "integration-test@airbyte.io"}], "reply_to": [{"name": "Close CRM", "email": "support@close.com"}]}, "date_updated": "2022-11-08T12:36:06.154000+00:00", "subject": "Your bulk edit for Airbyte is done", "body_preview": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Set custom field \"Lead Owner\" to \"user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg\".\n\nAll 2 leads were modifie", "date_created": "2021-08-25T21:03:54+00:00", "has_attachments": false, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_sent": "2021-08-25T21:03:54+00:00", "opens_summary": null, "bcc": [], "direction": "outgoing", "to": ["integration-test@airbyte.io"]}], "participants": [{"name": "'Close CRM' via Integration tests", "email": "integration-test@airbyte.io"}], "_type": "EmailThread", "activity_at": "2021-08-25T21:15:36.001000+00:00", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "latest_normalized_subject": "Your bulk edit for Airbyte is done", "updated_by": null, "created_by": null, "updated_by_name": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "acti_3rQgtNnE0L7Wo90WzgOXcbfSR2WCjOBipMrAq41yJFE", "contact_id": null, "date_updated": "2022-11-08T12:36:06.162000+00:00", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "date_created": "2021-08-25T21:15:36.001000+00:00", "created_by_name": null, "n_emails": 2}, "emitted_at": 1670413442085} +{"stream": "email_thread_activities", "data": {"latest_emails": [{"sender": null, "id": "acti_8MOghgAFLMW70Zj8pMTUA0NozWrEKeyckt4kFJcx65L", "cc": [], "status": "draft", "send_as_id": null, "envelope": {"message_id": null, "sender": [], "cc": [], "subject": "Airbyte Follow-up", "bcc": [], "date": "Wed, 18 Aug 2021 10:35:50 -0000", "in_reply_to": null, "is_autoreply": false, "to": [{"name": "", "email": "bluth@close.com"}], "from": [], "reply_to": []}, "date_updated": "2021-08-18T10:36:10.974000+00:00", "subject": "Airbyte Follow-up", "body_preview": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur ", "date_created": "2021-08-18T10:35:50.165000+00:00", "has_attachments": false, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_sent": null, "opens_summary": null, "bcc": [], "direction": "outgoing", "to": ["bluth@close.com"]}], "participants": [], "_type": "EmailThread", "activity_at": "2021-08-18T10:35:50.166000+00:00", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "latest_normalized_subject": "Airbyte Follow-up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "acti_XFp5upc2w8MawOLJ89I5LNlWOYcJLBrHp6UOFOTfN0T", "contact_id": null, "date_updated": "2021-08-18T10:36:10.989000+00:00", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "date_created": "2021-08-18T10:35:50.166000+00:00", "created_by_name": "Jean Lafleur", "n_emails": 1}, "emitted_at": 1670413442090} +{"stream": "email_thread_activities", "data": {"latest_emails": [{"sender": "Irina Grankova ", "id": "acti_8ylFXNqFPRAesiUZ63CiHVB4MsHwNhD8TlDpvIGJG8Z", "cc": [], "status": "inbox", "send_as_id": null, "envelope": {"message_id": "<56EC0E81-FE10-40C6-ACF8-8B448B510DFD@gmail.com>", "sender": [{"name": "Irina Grankova", "email": "irina.grankova@gmail.com"}], "cc": [], "subject": "Pic", "bcc": [], "date": "Mon, 26 Jul 2021 12:08:50 +0300", "in_reply_to": null, "is_autoreply": false, "to": [{"name": "", "email": "iryna.grankova@globallogic.com"}], "from": [{"name": "Irina Grankova", "email": "irina.grankova@gmail.com"}], "reply_to": []}, "date_updated": "2022-11-08T15:58:52.093000+00:00", "subject": "Pic", "body_preview": null, "date_created": "2021-07-26T09:08:50+00:00", "has_attachments": true, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_sent": null, "opens_summary": null, "bcc": [], "direction": "incoming", "to": ["iryna.grankova@globallogic.com"]}], "participants": [{"name": "Irina Grankova", "email": "irina.grankova@gmail.com"}], "_type": "EmailThread", "activity_at": "2021-07-26T09:08:50.001000+00:00", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "latest_normalized_subject": "Pic", "updated_by": null, "created_by": null, "updated_by_name": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "acti_v9S0gdPWzRUqjj2taSmmdfigKanA9tThaFe46FtcXGO", "contact_id": null, "date_updated": "2022-11-08T15:58:52.098000+00:00", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "date_created": "2021-07-26T09:08:50.001000+00:00", "created_by_name": null, "n_emails": 1}, "emitted_at": 1670413442093} +{"stream": "email_thread_activities", "data": {"latest_emails": [{"sender": "Steli Efti ", "id": "acti_Ags7x68KOMv3dKgtYWmrdFNCn16g0Wns0HSCY5L5nIm", "cc": [], "status": "inbox", "send_as_id": null, "envelope": {"message_id": "<162617634412.13.2638379749228562382@closeio-web-85678dcd7b-xdcf7>", "sender": [{"name": "Steli Efti", "email": "sales@close.com"}], "cc": [], "subject": "Welcome to Close, Jean!", "bcc": [], "date": "Tue, 13 Jul 2021 11:39:04 +0000", "in_reply_to": null, "is_autoreply": false, "to": [{"name": "", "email": "integration-test@airbyte.io"}], "from": [{"name": "Steli Efti", "email": "sales@close.com"}], "reply_to": [{"name": "", "email": "sales@close.com"}]}, "date_updated": "2021-07-13T11:39:04.130000+00:00", "subject": "Welcome to Close, Jean!", "body_preview": "Hi Jean!\n\nYou can send, receive, and track your email conversations all within Close.\n\nTry sending an outgoing email - click on the reply arrow and use an Email Templat", "date_created": "2021-07-13T11:39:04.130000+00:00", "has_attachments": false, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_sent": null, "opens_summary": null, "bcc": [], "direction": "incoming", "to": ["integration-test@airbyte.io"]}], "participants": [{"name": "Steli Efti", "email": "sales@close.com"}], "_type": "EmailThread", "activity_at": "2021-07-13T11:39:04.131000+00:00", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "latest_normalized_subject": "Welcome to Close, Jean!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "acti_dtGBVpRrqQszIPQgvEhqTGBz3fA5PYptEc4lmVWNUKm", "contact_id": null, "date_updated": "2021-07-13T11:39:04.134000+00:00", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "date_created": "2021-07-13T11:39:04.131000+00:00", "created_by_name": "Jean Lafleur", "n_emails": 1}, "emitted_at": 1670413442097} +{"stream": "email_thread_activities", "data": {"latest_emails": [{"sender": "bluth@close.com", "id": "acti_T0UrwXOaxgA0kzhGA5Zx0hDWgP7sy5ihKRivMlQWsLV", "cc": [], "status": "inbox", "send_as_id": null, "envelope": {"message_id": "<162617634457.13.866605428580538299@closeio-web-85678dcd7b-xdcf7>", "sender": [{"name": "", "email": "bluth@close.com"}], "cc": [], "subject": "Missed call", "bcc": [], "date": "Tue, 13 Jul 2021 11:39:04 +0000", "in_reply_to": null, "is_autoreply": false, "to": [{"name": "", "email": "integration-test@airbyte.io"}], "from": [{"name": "", "email": "bluth@close.com"}], "reply_to": []}, "date_updated": "2021-07-13T11:39:04.586000+00:00", "subject": "Missed call", "body_preview": "Hi Jean!\n\nI just saw your missed call. Sorry, I've been working hard on my illusions. Will call you back when I'm free.\n\nJust wanted to let you know, I'm still interested in your offer. Hope I'm not m", "date_created": "2021-07-05T11:39:00.850000+00:00", "has_attachments": false, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_sent": null, "opens_summary": null, "bcc": [], "direction": "incoming", "to": ["integration-test@airbyte.io"]}], "participants": [{"name": "", "email": "bluth@close.com"}], "_type": "EmailThread", "activity_at": "2021-07-05T11:39:00.851000+00:00", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "latest_normalized_subject": "Missed call", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "acti_FrMniUW4fyqPxIyOEuuZN2QzkJF5tY3Ny2Q1nhimPEK", "contact_id": null, "date_updated": "2021-07-13T11:39:04.591000+00:00", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "date_created": "2021-07-05T11:39:00.851000+00:00", "created_by_name": "Jean Lafleur", "n_emails": 1}, "emitted_at": 1670413442100} +{"stream": "email_thread_activities", "data": {"n_emails": 1, "date_created": "2022-11-09T12:54:23.168000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "activity_at": "2022-11-09T12:54:23.168000+00:00", "date_updated": "2022-11-09T13:39:37.579000+00:00", "latest_emails": [{"date_created": "2022-11-09T12:54:03.668000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n ", "bcc": [], "to": ["irina.grankova@gmail.com"], "date_sent": "2022-11-09T12:54:23.167000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-09T13:39:37.547000+00:00", "subject": "Test Lead + Airbyte", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Test Lead + Airbyte", "in_reply_to": null, "cc": [], "date": "Wed, 09 Nov 2022 12:54:23 +0000", "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "irina.grankova@gmail.com", "name": ""}], "message_id": "<166799846322.15922.4962027989641879748@smtpgw.close.com>", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by irina.grankova@gmail.com (2022-11-09)", "id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "send_as_id": null}], "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": "Jean Lafleur", "latest_normalized_subject": "Test Lead + Airbyte", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "_type": "EmailThread"}, "emitted_at": 1670413442737} +{"stream": "email_thread_activities", "data": {"n_emails": 1, "date_created": "2022-11-09T12:42:01.001000+00:00", "created_by": null, "created_by_name": null, "activity_at": "2022-11-09T12:42:01.001000+00:00", "date_updated": "2022-11-09T12:42:06.826000+00:00", "latest_emails": [{"date_created": "2022-11-09T12:42:01+00:00", "direction": "incoming", "cc": [], "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting 2\nSaturday Nov 12, 2022 \u22c5 8pm \u2013 9pm\nEastern European Time - Kyiv\n\n\n\nOrganizer\niryna.grankova@airbyte.io\niryna.grankova@airbyte.io\n\n", "bcc": [], "to": ["iryna.grankova@airbyte.io"], "date_sent": null, "has_attachments": true, "sender": "irina.grankova@gmail.com", "date_updated": "2022-11-09T12:42:06.821000+00:00", "subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "envelope": {"reply_to": [{"email": "irina.grankova@gmail.com", "name": ""}], "is_autoreply": true, "subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "in_reply_to": null, "cc": [], "date": "Wed, 09 Nov 2022 12:42:01 +0000", "sender": [{"email": "calendar-notification@google.com", "name": "Google Calendar"}], "bcc": [], "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}], "message_id": "<000000000000a8d33605ed08fb3c@google.com>", "from": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "status": "inbox", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_5Y0g1Ty898ORU1yMffesNiTs3I4RvFdWWrTErpmJmYb", "send_as_id": null}], "participants": [{"email": "irina.grankova@gmail.com", "name": ""}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": null, "latest_normalized_subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "updated_by": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_ZtrsNQMEmg7RwStpMzckQc22tjvbESmIdfdBkChH7s5", "_type": "EmailThread"}, "emitted_at": 1670413442739} +{"stream": "email_thread_activities", "data": {"n_emails": 1, "date_created": "2022-11-09T12:32:37.001000+00:00", "created_by": null, "created_by_name": null, "activity_at": "2022-11-09T12:32:37.001000+00:00", "date_updated": "2022-11-09T12:32:49.517000+00:00", "latest_emails": [{"date_created": "2022-11-09T12:32:37+00:00", "direction": "incoming", "cc": [], "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "bcc": [], "to": ["iryna.grankova@globallogic.com"], "date_sent": null, "has_attachments": true, "sender": "irina.grankova@gmail.com", "date_updated": "2022-11-09T12:32:49.511000+00:00", "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "envelope": {"reply_to": [{"email": "irina.grankova@gmail.com", "name": ""}], "is_autoreply": true, "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "in_reply_to": null, "cc": [], "date": "Wed, 09 Nov 2022 12:32:37 +0000", "sender": [{"email": "calendar-notification@google.com", "name": "Google Calendar"}], "bcc": [], "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}], "message_id": "<0000000000000d111305ed08dada@google.com>", "from": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "status": "inbox", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa", "send_as_id": null}], "participants": [{"email": "irina.grankova@gmail.com", "name": ""}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": null, "latest_normalized_subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "updated_by": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "_type": "EmailThread"}, "emitted_at": 1670413442742} +{"stream": "email_thread_activities", "data": {"n_emails": 1, "date_created": "2022-11-09T11:30:58.001000+00:00", "created_by": null, "created_by_name": null, "activity_at": "2022-11-09T11:30:58.001000+00:00", "date_updated": "2022-11-09T11:31:11.934000+00:00", "latest_emails": [{"date_created": "2022-11-09T11:30:58+00:00", "direction": "incoming", "cc": [], "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLi", "bcc": [], "to": ["iryna.grankova@globallogic.com"], "date_sent": null, "has_attachments": true, "sender": "irina.grankova@gmail.com", "date_updated": "2022-11-09T11:31:11.927000+00:00", "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "envelope": {"reply_to": [{"email": "irina.grankova@gmail.com", "name": ""}], "is_autoreply": true, "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "in_reply_to": null, "cc": [], "date": "Wed, 09 Nov 2022 11:30:58 +0000", "sender": [{"email": "calendar-notification@google.com", "name": "Google Calendar"}], "bcc": [], "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}], "message_id": "<0000000000009b99c605ed07fdaf@google.com>", "from": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "status": "inbox", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_90yRG8Hy4yCw7kRWEfJTRmf6QjmPseSWCxCLnwcSJfQ", "send_as_id": null}], "participants": [{"email": "irina.grankova@gmail.com", "name": ""}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": null, "latest_normalized_subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "updated_by": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "_type": "EmailThread"}, "emitted_at": 1670413442744} +{"stream": "email_thread_activities", "data": {"n_emails": 1, "date_created": "2022-11-09T11:28:52.001000+00:00", "created_by": null, "created_by_name": null, "activity_at": "2022-11-09T11:28:52.001000+00:00", "date_updated": "2022-11-09T11:29:03.351000+00:00", "latest_emails": [{"date_created": "2022-11-09T11:28:52+00:00", "direction": "incoming", "cc": [], "body_preview": "Test\n\n\n", "bcc": [], "to": ["integration-test@airbyte.io"], "date_sent": null, "has_attachments": false, "sender": "Irina Grankova ", "date_updated": "2022-11-09T11:29:03.346000+00:00", "subject": "Test", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Test", "in_reply_to": null, "cc": [], "date": "Wed, 9 Nov 2022 13:28:52 +0200", "sender": [{"email": "globallogic@airbyte.io", "name": ""}], "bcc": [], "to": [{"email": "integration-test@airbyte.io", "name": ""}], "message_id": "", "from": [{"email": "irina.grankova@gmail.com", "name": "Irina Grankova"}]}, "status": "inbox", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_EI3xv4nNGN7MNydTjlXHp5UmxEPKJhbpUtKf5lxg6Uq", "send_as_id": null}], "participants": [{"email": "irina.grankova@gmail.com", "name": "Irina Grankova"}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": null, "latest_normalized_subject": "Test", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "updated_by": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_p8SyYmT6CzaYHH6UQksWRLewcU6AjwNl1JbgPbp9Uai", "_type": "EmailThread"}, "emitted_at": 1670413442745} +{"stream": "email_thread_activities", "data": {"n_emails": 1, "date_created": "2022-11-09T11:25:32.265000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "activity_at": "2022-11-09T11:25:32.265000+00:00", "date_updated": "2022-11-09T11:29:01.514000+00:00", "latest_emails": [{"date_created": "2022-11-09T11:25:17.425000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "bcc": [], "to": ["irina.grankova@gmail.com"], "date_sent": "2022-11-09T11:25:32.264000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-09T11:29:01.481000+00:00", "subject": "Airbyte Follow-up", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Airbyte Follow-up", "in_reply_to": null, "cc": [], "date": "Wed, 09 Nov 2022 11:25:32 +0000", "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "irina.grankova@gmail.com", "name": ""}], "message_id": "<166799313228.17776.4777225093537029355@smtpgw.close.com>", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by irina.grankova@gmail.com (2022-11-09)", "id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "send_as_id": null}], "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": "Jean Lafleur", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "_type": "EmailThread"}, "emitted_at": 1670413442747} +{"stream": "email_thread_activities", "data": {"n_emails": 4, "date_created": "2022-11-08T17:53:35.312000+00:00", "created_by": null, "created_by_name": null, "activity_at": "2022-11-08T17:53:35.312000+00:00", "date_updated": "2022-11-09T02:40:26.451000+00:00", "latest_emails": [{"date_created": "2022-11-08T17:53:35.598000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what w", "bcc": [], "to": ["Steli Efti "], "date_sent": "2022-11-08T17:53:35.311000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-09T02:40:26.387000+00:00", "subject": "Close (Example\u00a0Lead) + Airbyte", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Close (Example\u00a0Lead) + Airbyte", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 17:53:36 +0000", "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "sales@close.com", "name": "Steli Efti"}], "message_id": "<166793001574.2977.16151555672380558322@smtpgw.close.com>", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by Steli Efti (5 times, latest 2022-11-09)", "id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "send_as_id": null}, {"date_created": "2022-11-08T17:41:58.589000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what", "bcc": [], "to": ["Support "], "date_sent": "2022-11-08T17:41:58.196000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T17:42:03.103000+00:00", "subject": "Close (Example\u00a0Lead) + Airbyte", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Close (Example\u00a0Lead) + Airbyte", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 17:41:59 +0000", "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "support@close.com", "name": "Support"}], "message_id": "<166792931876.62373.17646468751668935681@smtpgw.close.com>", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by Support (2 times, latest 2022-11-08)", "id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "send_as_id": null}, {"date_created": "2022-11-08T17:15:11.656000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we", "bcc": [], "to": ["Nick Persico "], "date_sent": "2022-11-08T17:15:11.279000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T17:15:14.724000+00:00", "subject": "Close (Example\u00a0Lead) + Airbyte", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Close (Example\u00a0Lead) + Airbyte", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 17:15:12 +0000", "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "nick@close.com", "name": "Nick Persico"}], "message_id": "<166792771182.46793.15708798519258202100@smtpgw.close.com>", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by Nick Persico (2022-11-08)", "id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "send_as_id": null}, {"date_created": "2022-11-08T17:12:07.975000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you wha", "bcc": [], "to": ["Customer Success Team "], "date_sent": "2022-11-08T17:12:07.625000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T17:12:12.687000+00:00", "subject": "Close (Example\u00a0Lead) + Airbyte", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Close (Example\u00a0Lead) + Airbyte", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 17:12:08 +0000", "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "success@close.com", "name": "Customer Success Team"}], "message_id": "<166792752819.46698.4592611849180210253@smtpgw.close.com>", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by Customer Success Team (2 times, latest 2022-11-08)", "id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "send_as_id": null}], "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": "Jean Lafleur", "latest_normalized_subject": "Close (Example Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "_type": "EmailThread"}, "emitted_at": 1670413442749} +{"stream": "email_thread_activities", "data": {"n_emails": 4, "date_created": "2022-11-08T16:48:47.167000+00:00", "created_by": null, "created_by_name": null, "activity_at": "2022-11-08T16:48:47.167000+00:00", "date_updated": "2022-11-09T02:40:26.467000+00:00", "latest_emails": [{"date_created": "2022-11-08T16:48:47.552000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- T", "bcc": [], "to": ["Support "], "date_sent": "2022-11-08T16:48:47.166000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T16:50:41.545000+00:00", "subject": "Airbyte Follow-up", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Airbyte Follow-up", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 16:48:48 +0000", "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "support@close.com", "name": "Support"}], "message_id": "<166792612773.32060.15386565426548563880@smtpgw.close.com>", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by Support (2022-11-08)", "id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "send_as_id": null}, {"date_created": "2022-11-08T16:36:07.646000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "bcc": [], "to": ["Steli Efti "], "date_sent": "2022-11-08T16:36:07.226000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-09T02:40:26.385000+00:00", "subject": "Airbyte Follow-up", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Airbyte Follow-up", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 16:36:08 +0000", "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "sales@close.com", "name": "Steli Efti"}], "message_id": "<166792536780.39994.6476676108875520271@smtpgw.close.com>", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by Steli Efti (5 times, latest 2022-11-09)", "id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "send_as_id": null}, {"date_created": "2022-11-08T16:24:31.650000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- ", "bcc": [], "to": ["Customer Success Team "], "date_sent": "2022-11-08T16:24:31.194000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T16:24:37.393000+00:00", "subject": "Airbyte Follow-up", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Airbyte Follow-up", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 16:24:32 +0000", "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "success@close.com", "name": "Customer Success Team"}], "message_id": "<166792467183.28936.13663569799747553498@smtpgw.close.com>", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by Customer Success Team (2022-11-08)", "id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "send_as_id": null}, {"date_created": "2022-11-08T16:23:04.668000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur", "bcc": [], "to": ["Nick Persico "], "date_sent": "2022-11-08T16:23:04.323000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T20:44:30.910000+00:00", "subject": "Airbyte Follow-up", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Airbyte Follow-up", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 16:23:05 +0000", "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "nick@close.com", "name": "Nick Persico"}], "message_id": "<166792458488.29477.5187137325155036854@smtpgw.close.com>", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by Nick Persico (2022-11-08)", "id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "send_as_id": null}], "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": "Jean Lafleur", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "_type": "EmailThread"}, "emitted_at": 1670413442752} +{"stream": "email_thread_activities", "data": {"n_emails": 6, "date_created": "2022-11-08T16:09:09.001000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "activity_at": "2022-11-08T16:09:09.001000+00:00", "date_updated": "2022-11-08T16:28:54.150000+00:00", "latest_emails": [{"date_created": "2022-11-08T16:09:09+00:00", "direction": "incoming", "cc": [], "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to tobiasfunke@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.com/", "bcc": [], "to": ["iryna.grankova@globallogic.com"], "date_sent": null, "has_attachments": true, "sender": "Mail Delivery Subsystem ", "date_updated": "2022-11-08T16:28:54.140000+00:00", "subject": "Delivery Status Notification (Failure)", "envelope": {"reply_to": [], "is_autoreply": true, "subject": "Delivery Status Notification (Failure)", "in_reply_to": "<166792374433.22448.16558415745556798661@smtpgw.close.com>", "cc": [], "date": "Tue, 08 Nov 2022 08:09:09 -0800 (PST)", "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "bcc": [], "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}], "message_id": "<636a7f25.c80a0220.659b6.8bba.GMR@mx.google.com>", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "status": "inbox", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_kInKkIusbEQTcNwu982oG2ncXoGXOckJbYy1d6RgHGx", "send_as_id": null}, {"date_created": "2022-11-08T16:09:04.170000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Th", "bcc": [], "to": ["Tobias F\u00fcnke "], "date_sent": "2022-11-08T16:09:03.809000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T16:09:05.758000+00:00", "subject": "Airbyte Follow-up", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Airbyte Follow-up", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 16:09:04 +0000", "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "tobiasfunke@close.com", "name": "Tobias F\u00fcnke"}], "message_id": "<166792374433.22448.16558415745556798661@smtpgw.close.com>", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "send_as_id": null}, {"date_created": "2022-11-08T15:21:52+00:00", "direction": "incoming", "cc": [], "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "bcc": [], "to": ["iryna.grankova@airbyte.io"], "date_sent": null, "has_attachments": true, "sender": "Mail Delivery Subsystem ", "date_updated": "2022-11-08T15:22:03.515000+00:00", "subject": "Delivery Status Notification (Failure)", "envelope": {"reply_to": [], "is_autoreply": true, "subject": "Delivery Status Notification (Failure)", "in_reply_to": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "cc": [], "date": "Tue, 08 Nov 2022 07:21:52 -0800 (PST)", "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "bcc": [], "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}], "message_id": "<636a7410.630a0220.27b8e.b6e2.GMR@mx.google.com>", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "status": "inbox", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "send_as_id": null}, {"date_created": "2022-11-08T15:21:49.243000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show y", "bcc": [], "to": ["Gob Bluth "], "date_sent": "2022-11-08T15:21:48.934000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T15:22:03.271000+00:00", "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 15:21:50 +0000", "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "bluth@close.com", "name": "Gob Bluth"}], "message_id": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by Gob Bluth (2022-11-08)", "id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "send_as_id": null}, {"date_created": "2022-11-08T12:58:48+00:00", "direction": "incoming", "cc": [], "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "bcc": [], "to": ["iryna.grankova@airbyte.io"], "date_sent": null, "has_attachments": true, "sender": "Mail Delivery Subsystem ", "date_updated": "2022-11-08T13:00:58.801000+00:00", "subject": "Delivery Status Notification (Failure)", "envelope": {"reply_to": [], "is_autoreply": true, "subject": "Delivery Status Notification (Failure)", "in_reply_to": "<166791232468.5302.9789676641910298968@smtpgw.close.com>", "cc": [], "date": "Tue, 08 Nov 2022 04:58:48 -0800 (PST)", "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "bcc": [], "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}], "message_id": "<636a5288.170a0220.f87e2.10cf.GMR@mx.google.com>", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "status": "inbox", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "send_as_id": null}], "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": "Jean Lafleur", "latest_normalized_subject": "Delivery Status Notification (Failure)", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "_type": "EmailThread"}, "emitted_at": 1670413442754} +{"stream": "email_thread_activities", "data": {"n_emails": 4, "date_created": "2022-11-08T15:44:23.001000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "activity_at": "2022-11-08T15:44:23.001000+00:00", "date_updated": "2022-11-09T11:12:59.711000+00:00", "latest_emails": [{"date_created": "2022-11-08T15:44:23+00:00", "direction": "incoming", "cc": [], "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.co", "bcc": [], "to": ["iryna.grankova@globallogic.com"], "date_sent": null, "has_attachments": true, "sender": "Mail Delivery Subsystem ", "date_updated": "2022-11-08T16:28:55.347000+00:00", "subject": "Delivery Status Notification (Failure)", "envelope": {"reply_to": [], "is_autoreply": true, "subject": "Delivery Status Notification (Failure)", "in_reply_to": "<166792225784.2629.13990873364570888607@smtpgw.close.com>", "cc": [], "date": "Tue, 08 Nov 2022 07:44:23 -0800 (PST)", "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "bcc": [], "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}], "message_id": "<636a7957.050a0220.76c16.8d69.GMR@mx.google.com>", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "status": "inbox", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_4FqtK5fUFc4M3CvT2mCEGHnXww1fWEJkRckW9WrIdKg", "send_as_id": null}, {"date_created": "2022-11-08T15:43:48.819000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Test", "bcc": [], "to": ["thedarkknight@close.com"], "date_sent": "2022-11-08T15:44:17.803000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-09T11:12:59.685000+00:00", "subject": "(no subject)", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "(no subject)", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 15:44:18 +0000", "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "thedarkknight@close.com", "name": ""}], "message_id": "<166792225784.2629.13990873364570888607@smtpgw.close.com>", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by thedarkknight@close.com (2022-11-09)", "id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "send_as_id": null}, {"date_created": "2022-11-08T12:56:55+00:00", "direction": "incoming", "cc": [], "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mai", "bcc": [], "to": ["iryna.grankova@airbyte.io"], "date_sent": null, "has_attachments": true, "sender": "Mail Delivery Subsystem ", "date_updated": "2022-11-08T13:00:57.698000+00:00", "subject": "Delivery Status Notification (Failure)", "envelope": {"reply_to": [], "is_autoreply": true, "subject": "Delivery Status Notification (Failure)", "in_reply_to": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "cc": [], "date": "Tue, 08 Nov 2022 04:56:55 -0800 (PST)", "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "bcc": [], "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}], "message_id": "<636a5217.170a0220.675e1.11c0.GMR@mx.google.com>", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}]}, "status": "inbox", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_Yc8SKxsCvKYEdmrOElcfbI4TeWAutmDsSG7mmHigzE8", "send_as_id": null}, {"date_created": "2022-11-08T12:54:51.103000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "bcc": [], "to": ["thedarkknight@close.com"], "date_sent": "2022-11-08T12:56:52.538000+00:00", "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T15:43:38.471000+00:00", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "thedarkknight@close.com", "name": ""}], "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "status": "sent", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": "Opened by thedarkknight@close.com (5+ times, latest 2022-11-08)", "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "send_as_id": null}], "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": "Jean Lafleur", "latest_normalized_subject": "Delivery Status Notification (Failure)", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "_type": "EmailThread"}, "emitted_at": 1670413442756} +{"stream": "email_thread_activities", "data": {"n_emails": 1, "date_created": "2022-11-08T12:55:49.389000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "activity_at": "2022-11-08T12:55:49.389000+00:00", "date_updated": "2022-11-08T12:55:54.142000+00:00", "latest_emails": [{"date_created": "2022-11-08T12:55:49.388000+00:00", "direction": "outgoing", "cc": [], "body_preview": "Test", "bcc": [], "to": ["thedarkknight@close.com"], "date_sent": null, "has_attachments": false, "sender": "Jean Lafleur ", "date_updated": "2022-11-08T12:55:54.125000+00:00", "subject": "Test", "envelope": {"reply_to": [], "is_autoreply": false, "subject": "Test", "in_reply_to": null, "cc": [], "date": "Tue, 08 Nov 2022 12:55:49 -0000", "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "bcc": [], "to": [{"email": "thedarkknight@close.com", "name": ""}], "message_id": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "status": "draft", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opens_summary": null, "id": "acti_XF6sSdUpFbve6PLReW4YrwwxTunoon1q7EAjkhiolZA", "send_as_id": null}], "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"], "updated_by_name": "Jean Lafleur", "latest_normalized_subject": "Test", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": null, "id": "acti_diSbB5sLhZK1kkgpBgzl4dlojtN1Nt6MEvLPC5DEZpe", "_type": "EmailThread"}, "emitted_at": 1670413442758} +{"stream": "lead_status_change_activities", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-08-25T21:15:35.163000+00:00", "user_name": "Jean Lafleur", "created_by_name": "Jean Lafleur", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "date_created": "2021-08-25T21:15:35.163000+00:00", "new_status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "id": "acti_wSO4ltT4XHGI6wkN2oCZpRdCtw1ALhsRttt8osqVjll", "users": [], "old_status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "contact_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "new_status_label": "Interested", "activity_at": "2021-08-25T21:15:35.163000+00:00", "_type": "LeadStatusChange", "old_status_label": "Potential"}, "emitted_at": 1670413444004} +{"stream": "lead_status_change_activities", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-08-25T21:15:34.607000+00:00", "user_name": "Jean Lafleur", "created_by_name": "Jean Lafleur", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "date_created": "2021-08-25T21:15:34.607000+00:00", "new_status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "id": "acti_T4XA2LBQYvrqAimflFjU2KXY0I2g1BPbOUn2jHZ59Dj", "users": [], "old_status_id": "stat_y6v7svdpj3v1ZHd1GoiJFcKrUGrA0jl2Af53jfGbkN9", "contact_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "new_status_label": "Interested", "activity_at": "2021-08-25T21:15:34.607000+00:00", "_type": "LeadStatusChange", "old_status_label": "Qualified"}, "emitted_at": 1670413444007} +{"stream": "lead_status_change_activities", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-08-25T21:15:34.044000+00:00", "user_name": "Jean Lafleur", "created_by_name": "Jean Lafleur", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "date_created": "2021-08-25T21:15:34.044000+00:00", "new_status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "id": "acti_udWvk5RJ6SFuO9Ra6d1pAJg200Q0Zyq43kEq0FpceIx", "users": [], "old_status_id": "stat_y6v7svdpj3v1ZHd1GoiJFcKrUGrA0jl2Af53jfGbkN9", "contact_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "new_status_label": "Interested", "activity_at": "2021-08-25T21:15:34.044000+00:00", "_type": "LeadStatusChange", "old_status_label": "Qualified"}, "emitted_at": 1670413444009} +{"stream": "lead_status_change_activities", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:04.731000+00:00", "user_name": "Jean Lafleur", "created_by_name": "Jean Lafleur", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "date_created": "2021-07-13T11:39:04.731000+00:00", "new_status_id": "stat_y6v7svdpj3v1ZHd1GoiJFcKrUGrA0jl2Af53jfGbkN9", "id": "acti_tEDQ45T1El5ilMfcT0G579AHnvsfTDqAd7KXBKbxbNV", "users": [], "old_status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "contact_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "new_status_label": "Qualified", "activity_at": "2021-07-13T11:39:04.731000+00:00", "_type": "LeadStatusChange", "old_status_label": "Potential"}, "emitted_at": 1670413444011} +{"stream": "lead_status_change_activities", "data": {"created_by_name": "Jean Lafleur", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "_type": "LeadStatusChange", "contact_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "date_updated": "2022-11-09T11:25:53.697000+00:00", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "updated_by_name": "Jean Lafleur", "id": "acti_8ygqbcNLU7NG3a6koeZKmfOGmaigvifz4IaeQpMbAcc", "old_status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "old_status_label": "Potential", "new_status_label": "Interested", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-09T11:25:53.697000+00:00", "users": [], "activity_at": "2022-11-09T11:25:53.697000+00:00", "new_status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q"}, "emitted_at": 1670413444720} +{"stream": "sms_activities", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_id": null, "local_phone_formatted": "+1 415-444-5555", "attachments": [], "local_country_iso": "US", "template_id": null, "id": "acti_GIVSys3F0wFeA519lDa5QKRfYOPgskyqKj2aXiCMSEO", "date_sent": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "local_phone": "+14154445555", "status": "draft", "_type": "SMS", "remote_phone_formatted": "+1 202-555-0186", "sequence_subscription_id": null, "remote_country_iso": "US", "error_message": null, "user_name": "Jean Lafleur", "date_created": "2021-08-11T18:14:32.750000+00:00", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "date_updated": "2021-08-11T18:14:32.750000+00:00", "source": "Close.io", "created_by_name": "Jean Lafleur", "activity_at": "2021-08-11T18:14:32.750000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "updated_by_name": "Jean Lafleur", "direction": "outbound", "remote_phone": "+12025550186", "cost": null, "text": "Hi! This is a reminder that we have a call scheduled for 12pm PT today.", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_scheduled": null}, "emitted_at": 1670413445927} +{"stream": "sms_activities", "data": {"user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "_type": "SMS", "date_created": "2022-11-09T14:02:18.756000+00:00", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "remote_phone_formatted": "+1 415-623-6785", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "remote_country_iso": "US", "direction": "outbound", "activity_at": "2022-11-09T14:02:18.756000+00:00", "id": "acti_CXrlrlHc8QpP5MBXqCfcJKpctDqBREuG3Whj0JQODu4", "status": "draft", "text": "Hi!", "source": "Close.io", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "local_phone": "+14156251293", "date_updated": "2022-11-09T14:02:24.943000+00:00", "local_phone_formatted": "+1 415-625-1293", "updated_by_name": "Jean Lafleur", "remote_phone": "+14156236785", "created_by_name": "Jean Lafleur", "cost": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_id": null, "sequence_subscription_id": null, "date_scheduled": null, "error_message": null, "local_country_iso": "US", "date_sent": null}, "emitted_at": 1670413446870} +{"stream": "sms_activities", "data": {"user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "_type": "SMS", "date_created": "2022-11-09T12:54:15.456000+00:00", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "attachments": [{"media_id": "media_580CfGelcIvP5BzvIYTlhX", "url": "https://app.close.com/go/sms/acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP/media/media_580CfGelcIvP5BzvIYTlhX/", "thumbnail_url": "https://app.close.com/go/sms/acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP/media/media_580CfGelcIvP5BzvIYTlhX/thumbnail/", "content_type": "image/png", "size": 6132, "filename": "Airbyte_logo_75x75.png"}], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "remote_phone_formatted": "+1 415-623-6785", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "remote_country_iso": "US", "direction": "outbound", "activity_at": "2022-11-09T12:54:44.404000+00:00", "id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "status": "sent", "text": "Hi!", "source": "Close.io", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "local_phone": "+14156251293", "date_updated": "2022-11-09T12:54:44.405000+00:00", "local_phone_formatted": "+1 415-625-1293", "updated_by_name": "Jean Lafleur", "remote_phone": "+14156236785", "created_by_name": "Jean Lafleur", "cost": "3", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_id": null, "sequence_subscription_id": null, "date_scheduled": null, "error_message": null, "local_country_iso": "US", "date_sent": "2022-11-09T12:54:44.404000+00:00"}, "emitted_at": 1670413446878} +{"stream": "sms_activities", "data": {"user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "template_id": "", "_type": "SMS", "date_created": "2022-11-08T15:59:38.497000+00:00", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "remote_phone_formatted": "+1 415-623-6785", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "remote_country_iso": "US", "direction": "outbound", "activity_at": "2022-11-08T15:59:59.614000+00:00", "id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "status": "sent", "text": "Test text message", "source": "Close.io", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "local_phone": "+14156251293", "date_updated": "2022-11-08T15:59:59.614000+00:00", "local_phone_formatted": "+1 415-625-1293", "updated_by_name": "Jean Lafleur", "remote_phone": "+14156236785", "created_by_name": "Jean Lafleur", "cost": "1", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_id": null, "sequence_subscription_id": null, "date_scheduled": null, "error_message": null, "local_country_iso": "US", "date_sent": "2022-11-08T15:59:59.614000+00:00"}, "emitted_at": 1670413446885} +{"stream": "sms_activities", "data": {"user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "_type": "SMS", "date_created": "2022-11-08T15:44:42.011000+00:00", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "remote_phone_formatted": "+1 415-623-6785", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "remote_country_iso": "US", "direction": "outbound", "activity_at": "2022-11-08T15:45:04.639000+00:00", "id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "status": "sent", "text": "Hi!", "source": "Close.io", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "local_phone": "+14156251293", "date_updated": "2022-11-08T15:45:04.640000+00:00", "local_phone_formatted": "+1 415-625-1293", "updated_by_name": "Jean Lafleur", "remote_phone": "+14156236785", "created_by_name": "Jean Lafleur", "cost": "1", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_id": null, "sequence_subscription_id": null, "date_scheduled": null, "error_message": null, "local_country_iso": "US", "date_sent": "2022-11-08T15:45:04.639000+00:00"}, "emitted_at": 1670413446889} +{"stream": "sms_activities", "data": {"user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "template_id": "", "_type": "SMS", "date_created": "2022-11-08T15:01:55.510000+00:00", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "remote_phone_formatted": "+1 415-623-6785", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "remote_country_iso": "US", "direction": "outbound", "activity_at": "2022-11-09T07:00:01.850000+00:00", "id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "status": "sent", "text": "Test message", "source": "Close.io", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "local_phone": "+14156251293", "date_updated": "2022-11-09T07:00:01.850000+00:00", "local_phone_formatted": "+1 415-625-1293", "updated_by_name": "Jean Lafleur", "remote_phone": "+14156236785", "created_by_name": "Jean Lafleur", "cost": "1", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_id": null, "sequence_subscription_id": null, "date_scheduled": "2022-11-09T07:00:00+00:00", "error_message": null, "local_country_iso": "US", "date_sent": "2022-11-09T07:00:01.850000+00:00"}, "emitted_at": 1670413446893} +{"stream": "sms_activities", "data": {"user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "template_id": "", "_type": "SMS", "date_created": "2022-11-08T15:01:20.794000+00:00", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "remote_phone_formatted": "+1 415-623-6785", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "remote_country_iso": "US", "direction": "outbound", "activity_at": "2022-11-08T15:01:40.416000+00:00", "id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "status": "sent", "text": "Test sms", "source": "Close.io", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "local_phone": "+14156251293", "date_updated": "2022-11-08T15:01:40.416000+00:00", "local_phone_formatted": "+1 415-625-1293", "updated_by_name": "Jean Lafleur", "remote_phone": "+14156236785", "created_by_name": "Jean Lafleur", "cost": "1", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_id": null, "sequence_subscription_id": null, "date_scheduled": null, "error_message": null, "local_country_iso": "US", "date_sent": "2022-11-08T15:01:40.416000+00:00"}, "emitted_at": 1670413446896} +{"stream": "sms_activities", "data": {"user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "template_id": "", "_type": "SMS", "date_created": "2022-11-08T12:57:17.961000+00:00", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "attachments": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "remote_phone_formatted": "+1 650-517-6539", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "remote_country_iso": "US", "direction": "outbound", "activity_at": "2022-11-08T12:57:39.721000+00:00", "id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "status": "sent", "text": "Test sms", "source": "Close.io", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "local_phone": "+14156251293", "date_updated": "2022-11-08T12:57:39.721000+00:00", "local_phone_formatted": "+1 415-625-1293", "updated_by_name": "Jean Lafleur", "remote_phone": "+16505176539", "created_by_name": "Jean Lafleur", "cost": "1", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "sequence_id": null, "sequence_subscription_id": null, "date_scheduled": null, "error_message": null, "local_country_iso": "US", "date_sent": "2022-11-08T12:57:39.721000+00:00"}, "emitted_at": 1670413446899} +{"stream": "task_completed_activities", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "users": [], "_type": "TaskCompleted", "activity_at": "2021-08-18T10:31:52.002000+00:00", "updated_by_name": "Jean Lafleur", "task_id": "task_7kpMfXIPms858l9GKZTo3BCtVflvcIsOYPXL8mZgzyp", "date_updated": "2021-08-18T10:31:52.002000+00:00", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "date_created": "2021-08-18T10:31:52.002000+00:00", "task_assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "id": "acti_gdh0Iw30XYfKhKctrqPuxAbNghsxlDBDFaN8k35ZAxf", "created_by_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "task_text": "Send Steli an email", "task_assigned_to_name": "Jean Lafleur"}, "emitted_at": 1670413448078} +{"stream": "task_completed_activities", "data": {"task_id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "task_assigned_to_name": "Jean Lafleur", "id": "acti_tEFyhPH4AKZ3YHaqqFEdm9Lot1oEI4yEyKzEf0ncbGE", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "activity_at": "2022-11-09T12:44:26.185000+00:00", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "users": [], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "_type": "TaskCompleted", "created_by_name": "Jean Lafleur", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "task_assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-09T12:44:26.185000+00:00", "updated_by_name": "Jean Lafleur", "task_text": "Follow up", "date_updated": "2022-11-09T12:44:26.185000+00:00"}, "emitted_at": 1670413448695} +{"stream": "task_completed_activities", "data": {"task_id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "task_assigned_to_name": "Jean Lafleur", "id": "acti_DJOFYNqKoXSmPB4yJHVRafxAqhnvk5olHmmihw4cqND", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "activity_at": "2022-11-09T11:06:11.134000+00:00", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "users": [], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "_type": "TaskCompleted", "created_by_name": "Jean Lafleur", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "task_assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-09T11:06:11.134000+00:00", "updated_by_name": "Jean Lafleur", "task_text": "Follow up", "date_updated": "2022-11-09T11:06:11.134000+00:00"}, "emitted_at": 1670413448697} +{"stream": "task_completed_activities", "data": {"task_id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "task_assigned_to_name": "Jean Lafleur", "id": "acti_SFQmP02YDdCHlkwAWoEtIfZXEOvhoenTmKVdEw7BtJB", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "activity_at": "2022-11-09T10:57:24.688000+00:00", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "users": [], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "_type": "TaskCompleted", "created_by_name": "Jean Lafleur", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "task_assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-09T10:57:24.688000+00:00", "updated_by_name": "Jean Lafleur", "task_text": "Follow up", "date_updated": "2022-11-09T10:57:24.688000+00:00"}, "emitted_at": 1670413448699} +{"stream": "task_completed_activities", "data": {"task_id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "task_assigned_to_name": "Jean Lafleur", "id": "acti_POPD3uA7lSfdf4xLO7PgsxKeoJS1dCRthzQRb13Xbyw", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "activity_at": "2022-11-08T12:21:15.641000+00:00", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "users": [], "user_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "_type": "TaskCompleted", "created_by_name": "Jean Lafleur", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "task_assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:21:15.641000+00:00", "updated_by_name": "Jean Lafleur", "task_text": "Call Steli", "date_updated": "2022-11-08T12:21:15.641000+00:00"}, "emitted_at": 1670413448700} +{"stream": "leads", "data": {"custom": {}, "opportunities": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [{"name": "Google Search", "url": "https://google.com/search?q=Alex"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "url": null, "description": "", "date_updated": "2022-07-05T21:01:25.658000+00:00", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "addresses": [], "updated_by_name": "Jean Lafleur", "contacts": [{"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-07-05T21:01:25.612000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Cooper"}], "display_name": "Cooper", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_Dsi7AGMRelIZ2I6DIKicaGJU7mwxPZElLIHy33xbjCM", "emails": [], "phones": [], "urls": [], "date_updated": "2022-07-05T21:01:25.612000+00:00", "title": "", "name": "Cooper", "lead_id": "lead_Eohw2Vf6WOKZHQ97nS1UTL3iV62pAJFX3ROgJ5WT4cY"}], "name": "Alex", "html_url": "https://app.close.com/lead/lead_Eohw2Vf6WOKZHQ97nS1UTL3iV62pAJFX3ROgJ5WT4cY/", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-07-05T21:01:25.608000+00:00", "display_name": "Alex", "id": "lead_Eohw2Vf6WOKZHQ97nS1UTL3iV62pAJFX3ROgJ5WT4cY", "status_label": "Potential", "tasks": []}, "emitted_at": 1670413450884} +{"stream": "leads", "data": {"custom": {"Current Vendor/Software": "BiffCo", "Industry": "Real estate", "Lead Owner": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "Referral Source": "Google Search"}, "opportunities": [{"integration_links": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status_display_name": "Demo Completed", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "value_formatted": "$3,000", "annualized_value": 300000, "value_currency": "USD", "contact_id": null, "confidence": 75, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:04.817000+00:00", "status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "updated_by_name": "Jean Lafleur", "value_period": "one_time", "note": "Gob's ready to buy a $3,000 suit.", "user_name": "Jean Lafleur", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:04.817000+00:00", "status_label": "Demo Completed", "contact_name": null, "status_type": "active", "annualized_expected_value": 225000, "id": "oppo_NkKuhUWfDoErNArh44hw7jkkx7sCl5bhlamtezmX7BE", "value": 300000, "lead_name": "Bluth Company (Example\u00a0Lead)", "date_won": "2021-07-16", "expected_value": 225000, "date_lost": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [{"name": "Google Search", "url": "https://google.com/search?q=Bluth%20Company%20%28Example%C2%A0Lead%29"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "url": null, "description": null, "date_updated": "2022-11-08T16:28:54.174000+00:00", "status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "addresses": [{"address_1": "100 Bluth Drive", "zipcode": "90210", "city": "Los Angeles", "country": "US", "label": "business", "address_2": null, "state": "CA"}], "updated_by_name": "Jean Lafleur", "contacts": [{"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:04.430000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Gob%20Bluth"}], "display_name": "Gob Bluth", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "emails": [{"email": "bluth@close.com", "type": "office"}], "phones": [{"type": "office", "phone": "+12025550186", "country": "US", "phone_formatted": "+1 202-555-0186"}], "urls": [], "date_updated": "2021-07-13T11:39:04.430000+00:00", "title": "Magician", "name": "Gob Bluth", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Gatekeeper"]}, {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:04.441000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Tobias%20F%C3%BCnke"}], "display_name": "Tobias F\u00fcnke", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "emails": [{"email": "tobiasfunke@close.com", "type": "office"}], "phones": [], "urls": [], "date_updated": "2021-07-13T11:39:04.441000+00:00", "title": "Blue Man Group (Understudy)", "name": "Tobias F\u00fcnke", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Point of Contact"]}], "name": "Bluth Company (Example\u00a0Lead)", "html_url": "https://app.close.com/lead/lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2/", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-05T11:39:00.850000+00:00", "display_name": "Bluth Company (Example\u00a0Lead)", "id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "status_label": "Interested", "tasks": [], "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "BiffCo", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Real estate", "custom.cf_mhBoQeiuwFRlz7zqyi4kJgzUreEoUp0hUsLwrnUTEgh": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Google Search"}, "emitted_at": 1670413450892} +{"stream": "leads", "data": {"custom": {"Current Vendor/Software": "Stark Industries", "Industry": "Software", "Lead Owner": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "Referral Source": "Website"}, "opportunities": [{"integration_links": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status_display_name": "Proposal Sent", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "value_formatted": "$500", "annualized_value": 50000, "value_currency": "USD", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "confidence": 75, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-08-18T10:26:44.306000+00:00", "status_id": "stat_AWXzFJkvkHVyJQPFulY0wM7LrQRiMEtQChGumG035bH", "updated_by_name": "Jean Lafleur", "value_period": "one_time", "note": "Use opportunities to track which stage of the pipeline your deals are in and the revenue associated with them.", "user_name": "Jean Lafleur", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:04.284000+00:00", "status_label": "Proposal Sent", "contact_name": "Steli Efti", "status_type": "active", "annualized_expected_value": 37500, "id": "oppo_1TfmaSLuECcdSQIBnjUOBj1gAXdyrp4SFaogvcEmtbk", "value": 50000, "lead_name": "Close (Example\u00a0Lead)", "date_won": "2021-07-15", "expected_value": 37500, "date_lost": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [{"name": "Google Search", "url": "https://google.com/search?q=Close%20%28Example%C2%A0Lead%29"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "url": "https://close.com", "description": "Visit our blog for high quality sales content, blog.close.com!", "date_updated": "2022-11-09T02:40:26.489000+00:00", "status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "addresses": [{"address_1": "PO Box 7775 #69574", "zipcode": "94120", "city": "San Francisco", "country": "US", "label": "mailing", "address_2": null, "state": "CA"}], "updated_by_name": "Jean Lafleur", "contacts": [{"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:03.354000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Steli%20Efti"}], "display_name": "Steli Efti", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "emails": [{"email": "sales@close.com", "type": "office"}], "phones": [{"type": "office", "phone": "+16505176539", "country": "US", "phone_formatted": "+1 650-517-6539"}], "urls": [], "date_updated": "2021-07-13T11:39:03.354000+00:00", "title": "CEO & Co-Founder", "name": "Steli Efti", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Decision Maker"]}, {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:03.366000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Nick%20Persico"}], "display_name": "Nick Persico", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "emails": [{"email": "nick@close.com", "type": "office"}], "phones": [{"type": "office", "phone": "+18334625673", "country": "US", "phone_formatted": "+1 833-462-5673"}], "urls": [], "date_updated": "2021-07-13T11:39:03.366000+00:00", "title": "Director of Revenue", "name": "Nick Persico", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Gatekeeper", "Point of Contact"]}, {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:03.374000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Customer%20Success%20Team"}], "display_name": "Customer Success Team", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "emails": [{"email": "success@close.com", "type": "office"}], "phones": [{"type": "office", "phone": "+18334625673", "country": "US", "phone_formatted": "+1 833-462-5673"}], "urls": [], "date_updated": "2021-07-13T11:39:03.374000+00:00", "title": null, "name": "Customer Success Team", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz"}, {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:03.380000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Support"}], "display_name": "Support", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "emails": [{"email": "support@close.com", "type": "office"}], "phones": [], "urls": [], "date_updated": "2021-07-13T11:39:03.380000+00:00", "title": null, "name": "Support", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz"}], "name": "Close (Example\u00a0Lead)", "html_url": "https://app.close.com/lead/lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz/", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:03.315000+00:00", "display_name": "Close (Example\u00a0Lead)", "id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "status_label": "Interested", "tasks": [{"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2021-07-18", "text": "Call Steli", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-08T12:21:15.730000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": null, "date_created": "2021-07-13T11:39:03.520000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": "acti_POPD3uA7lSfdf4xLO7PgsxKeoJS1dCRthzQRb13Xbyw", "contact_name": null, "is_complete": true, "id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "object_type": "taskcompleted", "lead_name": "Close (Example\u00a0Lead)", "assigned_to_name": "Jean Lafleur", "due_date": "2021-07-18", "view": "archive", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz"}, {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2021-07-16", "text": "Send Steli an email", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-08-18T10:31:52.081000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": null, "date_created": "2021-07-13T11:39:03.463000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": "acti_gdh0Iw30XYfKhKctrqPuxAbNghsxlDBDFaN8k35ZAxf", "contact_name": null, "is_complete": true, "id": "task_7kpMfXIPms858l9GKZTo3BCtVflvcIsOYPXL8mZgzyp", "object_type": "taskcompleted", "lead_name": "Close (Example\u00a0Lead)", "assigned_to_name": "Jean Lafleur", "due_date": "2021-07-16", "view": "archive", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz"}], "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "Stark Industries", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Software", "custom.cf_mhBoQeiuwFRlz7zqyi4kJgzUreEoUp0hUsLwrnUTEgh": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Website"}, "emitted_at": 1670413450897} +{"stream": "leads", "data": {"custom": {"Current Vendor/Software": "Initech", "Industry": "Manufacturing", "Lead Owner": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "Referral Source": "Facebook"}, "opportunities": [{"integration_links": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status_display_name": "Demo Completed", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "value_formatted": "$500", "annualized_value": 50000, "value_currency": "USD", "contact_id": null, "confidence": 75, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:05.061000+00:00", "status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "updated_by_name": "Jean Lafleur", "value_period": "one_time", "note": "Bruce needs new software for the Bat Cave.", "user_name": "Jean Lafleur", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:05.061000+00:00", "status_label": "Demo Completed", "contact_name": null, "status_type": "active", "annualized_expected_value": 37500, "id": "oppo_jXatpqaQ3HK50yBO9vMWg2wFyHoqbCJtgbRYAMuEGor", "value": 50000, "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "date_won": "2021-07-15", "expected_value": 37500, "date_lost": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [{"name": "Google Search", "url": "https://google.com/search?q=Wayne%20Enterprises%20%28Example%C2%A0Lead%29"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "url": null, "description": null, "date_updated": "2022-11-09T11:20:42.555000+00:00", "status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "addresses": [], "updated_by_name": "Jean Lafleur", "contacts": [{"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:04.977000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Bruce%20Wayne"}], "display_name": "Bruce Wayne", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "emails": [{"email": "thedarkknight@close.com", "type": "office"}], "phones": [{"type": "office", "phone": "+14156236785", "country": "US", "phone_formatted": "+1 415-623-6785"}], "urls": [], "date_updated": "2022-11-08T15:01:17.915000+00:00", "title": "The Dark Knight", "name": "Bruce Wayne", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Decision Maker", "Point of Contact"]}], "name": "Wayne Enterprises (Example\u00a0Lead)", "html_url": "https://app.close.com/lead/lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN/", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:04.960000+00:00", "display_name": "Wayne Enterprises (Example\u00a0Lead)", "id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "status_label": "Interested", "tasks": [{"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2022-11-12", "text": "Follow up", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-09T11:06:06.145000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": false, "date_created": "2022-11-08T15:10:57.220000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": null, "contact_name": null, "is_complete": false, "id": "task_Wgzt6t0ZGRlvZTnfhSfxHoFRWm6zXBMuuecKxRkfYmZ", "object_type": null, "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "assigned_to_name": "Jean Lafleur", "due_date": "2022-11-12", "view": "inbox", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN"}, {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2022-11-12", "text": "Follow up", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-09T11:06:06.147000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": false, "date_created": "2022-11-09T11:05:42.844000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": null, "contact_name": null, "is_complete": false, "id": "task_7NzjQt8zXoqAUMJsb58EGBP4rqTTbm5iR8jRuOY3MAJ", "object_type": null, "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "assigned_to_name": "Jean Lafleur", "due_date": "2022-11-12", "view": "inbox", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN"}, {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2022-11-19T09:00:00+00:00", "text": "Follow up", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-08T15:13:22.159000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": false, "date_created": "2022-11-08T15:13:22.159000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": null, "contact_name": null, "is_complete": false, "id": "task_pIYI4An2qA84qea5mCLggCL0dZ8QIk2c2YrzoqSV8fd", "object_type": null, "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "assigned_to_name": "Jean Lafleur", "due_date": "2022-11-19T09:00:00+00:00", "view": "inbox", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN"}, {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2022-11-30T08:00:00+00:00", "text": "Follow up", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-09T10:57:24.756000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": false, "date_created": "2022-11-08T15:13:13.470000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": "acti_SFQmP02YDdCHlkwAWoEtIfZXEOvhoenTmKVdEw7BtJB", "contact_name": null, "is_complete": true, "id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "object_type": "taskcompleted", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "assigned_to_name": "Jean Lafleur", "due_date": "2022-11-30T08:00:00+00:00", "view": "archive", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN"}, {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2022-11-09T07:30:00+00:00", "text": "Follow up", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-09T11:06:11.243000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": false, "date_created": "2022-11-09T11:05:46.682000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": "acti_DJOFYNqKoXSmPB4yJHVRafxAqhnvk5olHmmihw4cqND", "contact_name": null, "is_complete": true, "id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "object_type": "taskcompleted", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "assigned_to_name": "Jean Lafleur", "due_date": "2022-11-09T07:30:00+00:00", "view": "archive", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN"}], "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "Initech", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Manufacturing", "custom.cf_mhBoQeiuwFRlz7zqyi4kJgzUreEoUp0hUsLwrnUTEgh": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Facebook"}, "emitted_at": 1670413450902} +{"stream": "leads", "data": {"custom": {}, "opportunities": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [{"name": "Google Search", "url": "https://google.com/search?q=Airbyte"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "url": null, "description": "", "date_updated": "2022-11-11T09:02:11.007000+00:00", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "addresses": [], "updated_by_name": "Jean Lafleur", "contacts": [{"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-11T09:00:52.289000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Yowan%20R"}], "display_name": "Yowan R", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_b4h4BcmWn7rKbnsHQ0JfADwXGgndbpc5JlQEdHHyv78", "emails": [], "phones": [{"type": "office", "phone": "+16462558418", "country": "US", "phone_formatted": "+1 646-255-8418"}], "urls": [], "date_updated": "2022-11-11T09:02:10.996000+00:00", "title": "Product Manager", "name": "Yowan R", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y"}], "name": "Airbyte", "html_url": "https://app.close.com/lead/lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y/", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-11T09:00:52.285000+00:00", "display_name": "Airbyte", "id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "status_label": "Potential", "tasks": [{"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2022-11-30T09:00:00+00:00", "text": "Follow up", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-11T09:01:24.622000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": false, "date_created": "2022-11-11T09:01:05.650000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": null, "contact_name": null, "is_complete": false, "id": "task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6", "object_type": null, "lead_name": "Airbyte", "assigned_to_name": "Jean Lafleur", "due_date": "2022-11-30T09:00:00+00:00", "view": "inbox", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y"}]}, "emitted_at": 1670413450906} +{"stream": "leads", "data": {"custom": {}, "opportunities": [{"integration_links": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status_display_name": "Demo Completed", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "value_formatted": "$100", "annualized_value": 10000, "value_currency": "USD", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "confidence": 50, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-08T15:55:27.750000+00:00", "status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "updated_by_name": "Jean Lafleur", "value_period": "one_time", "note": "Test", "user_name": "Jean Lafleur", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:55:27.750000+00:00", "status_label": "Demo Completed", "contact_name": "Iryna", "status_type": "active", "annualized_expected_value": 5000, "id": "oppo_QtfwXdJFxmOLRzd3mirP7S5vWWYTEho2uWtHYNSiOUE", "value": 10000, "lead_name": "Test Lead", "date_won": "2022-11-16", "expected_value": 5000, "date_lost": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [{"name": "Google Search", "url": "https://google.com/search?q=Test%20Lead"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "url": null, "description": "", "date_updated": "2022-11-12T19:00:04.131000+00:00", "status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "addresses": [], "updated_by_name": "Jean Lafleur", "contacts": [{"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:54:42.381000+00:00", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Iryna"}], "display_name": "Iryna", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "emails": [{"email": "irina.grankova@gmail.com", "type": "office"}], "phones": [{"type": "office", "phone": "+14156236785", "country": "US", "phone_formatted": "+1 415-623-6785"}], "urls": [], "date_updated": "2022-11-09T11:31:18.119000+00:00", "title": "Test Lead", "name": "Iryna", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j"}], "name": "Test Lead", "html_url": "https://app.close.com/lead/lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j/", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:54:42.377000+00:00", "display_name": "Test Lead", "id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "status_label": "Interested", "tasks": [{"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2022-11-17T08:30:00+00:00", "text": "Follow up", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-08T15:55:06.275000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": false, "date_created": "2022-11-08T15:55:06.275000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": null, "contact_name": null, "is_complete": false, "id": "task_Va4jRQkIhZrUwzejqF3lZ4VaJeqR0cAvzzuaN0IaE5r", "object_type": null, "lead_name": "Test Lead", "assigned_to_name": "Jean Lafleur", "due_date": "2022-11-17T08:30:00+00:00", "view": "inbox", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j"}, {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2022-11-23T09:00:00+00:00", "text": "Follow up", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "contact_id": null, "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-09T12:44:26.200000+00:00", "updated_by_name": "Jean Lafleur", "is_dateless": false, "date_created": "2022-11-09T12:37:29.827000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "object_id": "acti_tEFyhPH4AKZ3YHaqqFEdm9Lot1oEI4yEyKzEf0ncbGE", "contact_name": null, "is_complete": true, "id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "object_type": "taskcompleted", "lead_name": "Test Lead", "assigned_to_name": "Jean Lafleur", "due_date": "2022-11-23T09:00:00+00:00", "view": "archive", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j"}]}, "emitted_at": 1670413450910} +{"stream": "lead_tasks", "data": {"contact_name": null, "assigned_to_name": "Jean Lafleur", "text": "Send Steli an email", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "is_dateless": null, "contact_id": null, "id": "task_7kpMfXIPms858l9GKZTo3BCtVflvcIsOYPXL8mZgzyp", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_name": "Close (Example\u00a0Lead)", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:03.463000+00:00", "object_id": "acti_gdh0Iw30XYfKhKctrqPuxAbNghsxlDBDFaN8k35ZAxf", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2021-07-16", "created_by_name": "Jean Lafleur", "_type": "lead", "updated_by_name": "Jean Lafleur", "object_type": "taskcompleted", "view": "archive", "date_updated": "2021-08-18T10:31:52.081000+00:00", "is_complete": true, "due_date": "2021-07-16"}, "emitted_at": 1670413452455} +{"stream": "lead_tasks", "data": {"contact_name": null, "assigned_to_name": "Jean Lafleur", "text": "Call Steli", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "is_dateless": null, "contact_id": null, "id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_name": "Close (Example\u00a0Lead)", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:03.520000+00:00", "object_id": "acti_POPD3uA7lSfdf4xLO7PgsxKeoJS1dCRthzQRb13Xbyw", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date": "2021-07-18", "created_by_name": "Jean Lafleur", "_type": "lead", "updated_by_name": "Jean Lafleur", "object_type": "taskcompleted", "view": "archive", "date_updated": "2022-11-08T12:21:15.730000+00:00", "is_complete": true, "due_date": "2021-07-18"}, "emitted_at": 1670413452458} +{"stream": "lead_tasks", "data": {"lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "date_created": "2022-11-08T15:10:57.220000+00:00", "date_updated": "2022-11-09T11:06:06.145000+00:00", "updated_by_name": "Jean Lafleur", "text": "Follow up", "is_complete": false, "object_id": null, "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "task_Wgzt6t0ZGRlvZTnfhSfxHoFRWm6zXBMuuecKxRkfYmZ", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "due_date": "2022-11-12", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "is_dateless": false, "date": "2022-11-12", "view": "inbox", "object_type": null, "contact_name": null, "lead_name": "Wayne Enterprises (Example\u00a0Lead)"}, "emitted_at": 1670413453746} +{"stream": "lead_tasks", "data": {"lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "date_created": "2022-11-08T15:13:13.470000+00:00", "date_updated": "2022-11-09T10:57:24.756000+00:00", "updated_by_name": "Jean Lafleur", "text": "Follow up", "is_complete": true, "object_id": "acti_SFQmP02YDdCHlkwAWoEtIfZXEOvhoenTmKVdEw7BtJB", "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "due_date": "2022-11-30T08:00:00+00:00", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "is_dateless": false, "date": "2022-11-30T08:00:00+00:00", "view": "archive", "object_type": "taskcompleted", "contact_name": null, "lead_name": "Wayne Enterprises (Example\u00a0Lead)"}, "emitted_at": 1670413453753} +{"stream": "lead_tasks", "data": {"lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "date_created": "2022-11-08T15:13:22.159000+00:00", "date_updated": "2022-11-08T15:13:22.159000+00:00", "updated_by_name": "Jean Lafleur", "text": "Follow up", "is_complete": false, "object_id": null, "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "task_pIYI4An2qA84qea5mCLggCL0dZ8QIk2c2YrzoqSV8fd", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "due_date": "2022-11-19T09:00:00+00:00", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "is_dateless": false, "date": "2022-11-19T09:00:00+00:00", "view": "inbox", "object_type": null, "contact_name": null, "lead_name": "Wayne Enterprises (Example\u00a0Lead)"}, "emitted_at": 1670413453758} +{"stream": "lead_tasks", "data": {"lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "date_created": "2022-11-08T15:55:06.275000+00:00", "date_updated": "2022-11-08T15:55:06.275000+00:00", "updated_by_name": "Jean Lafleur", "text": "Follow up", "is_complete": false, "object_id": null, "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "task_Va4jRQkIhZrUwzejqF3lZ4VaJeqR0cAvzzuaN0IaE5r", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "due_date": "2022-11-17T08:30:00+00:00", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "is_dateless": false, "date": "2022-11-17T08:30:00+00:00", "view": "inbox", "object_type": null, "contact_name": null, "lead_name": "Test Lead"}, "emitted_at": 1670413453762} +{"stream": "lead_tasks", "data": {"lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "date_created": "2022-11-09T11:05:42.844000+00:00", "date_updated": "2022-11-09T11:06:06.147000+00:00", "updated_by_name": "Jean Lafleur", "text": "Follow up", "is_complete": false, "object_id": null, "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "task_7NzjQt8zXoqAUMJsb58EGBP4rqTTbm5iR8jRuOY3MAJ", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "due_date": "2022-11-12", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "is_dateless": false, "date": "2022-11-12", "view": "inbox", "object_type": null, "contact_name": null, "lead_name": "Wayne Enterprises (Example\u00a0Lead)"}, "emitted_at": 1670413453766} +{"stream": "lead_tasks", "data": {"lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "date_created": "2022-11-09T11:05:46.682000+00:00", "date_updated": "2022-11-09T11:06:11.243000+00:00", "updated_by_name": "Jean Lafleur", "text": "Follow up", "is_complete": true, "object_id": "acti_DJOFYNqKoXSmPB4yJHVRafxAqhnvk5olHmmihw4cqND", "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "due_date": "2022-11-09T07:30:00+00:00", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "is_dateless": false, "date": "2022-11-09T07:30:00+00:00", "view": "archive", "object_type": "taskcompleted", "contact_name": null, "lead_name": "Wayne Enterprises (Example\u00a0Lead)"}, "emitted_at": 1670413453769} +{"stream": "lead_tasks", "data": {"lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "date_created": "2022-11-09T12:37:29.827000+00:00", "date_updated": "2022-11-09T12:44:26.200000+00:00", "updated_by_name": "Jean Lafleur", "text": "Follow up", "is_complete": true, "object_id": "acti_tEFyhPH4AKZ3YHaqqFEdm9Lot1oEI4yEyKzEf0ncbGE", "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "due_date": "2022-11-23T09:00:00+00:00", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "is_dateless": false, "date": "2022-11-23T09:00:00+00:00", "view": "archive", "object_type": "taskcompleted", "contact_name": null, "lead_name": "Test Lead"}, "emitted_at": 1670413453772} +{"stream": "lead_tasks", "data": {"lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "date_created": "2022-11-11T09:01:05.650000+00:00", "date_updated": "2022-11-11T09:01:24.622000+00:00", "updated_by_name": "Jean Lafleur", "text": "Follow up", "is_complete": false, "object_id": null, "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "due_date": "2022-11-30T09:00:00+00:00", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "created_by_name": "Jean Lafleur", "is_dateless": false, "date": "2022-11-30T09:00:00+00:00", "view": "inbox", "object_type": null, "contact_name": null, "lead_name": "Airbyte"}, "emitted_at": 1670413453774} +{"stream": "incoming_email_tasks", "data": {"assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "noti_U722qGVxvXSd1AP7Cs2ygzun3Vm0tmfKOv1dSt2Itw0", "date": "2022-11-08T15:44:23.001000+00:00", "date_updated": "2022-11-08T16:28:55.890000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "assigned_to_name": "Jean Lafleur", "contact_name": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mai", "cleared_followups": [], "_type": "incoming_email", "emails": [], "is_complete": true, "date_created": "2022-11-08T15:44:23.001000+00:00", "created_by_name": null, "updated_by_name": null, "created_by": null, "subject": "Delivery Status Notification (Failure)", "view": "archive", "contact_id": null, "object_type": "emailthread", "updated_by": null, "lead_name": "Wayne Enterprises (Example\u00a0Lead)"}, "emitted_at": 1670413456107} +{"stream": "incoming_email_tasks", "data": {"assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "noti_9IHsSYqeUsxtZHI3umO2tpFpCCs5lou3KuMsVxmSKMV", "date": "2022-11-08T16:09:09.001000+00:00", "date_updated": "2022-11-08T16:28:55.751000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "assigned_to_name": "Jean Lafleur", "contact_name": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "cleared_followups": [], "_type": "incoming_email", "emails": [], "is_complete": true, "date_created": "2022-11-08T16:09:09.001000+00:00", "created_by_name": null, "updated_by_name": null, "created_by": null, "subject": "Delivery Status Notification (Failure)", "view": "archive", "contact_id": null, "object_type": "emailthread", "updated_by": null, "lead_name": "Bluth Company (Example\u00a0Lead)"}, "emitted_at": 1670413456116} +{"stream": "incoming_email_tasks", "data": {"assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "noti_riWe7WgmaFmLFb5coiG1xDTXA0gj1YIQ0NyMpBpwmj1", "date": "2022-11-09T11:28:52+00:00", "date_updated": "2022-11-09T11:31:12.492000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "object_id": "acti_p8SyYmT6CzaYHH6UQksWRLewcU6AjwNl1JbgPbp9Uai", "assigned_to_name": "Jean Lafleur", "contact_name": "Iryna", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "body_preview": "Test\n\n\n", "cleared_followups": [], "_type": "incoming_email", "emails": [], "is_complete": true, "date_created": "2022-11-09T11:28:52+00:00", "created_by_name": null, "updated_by_name": "Jean Lafleur", "created_by": null, "subject": "Test", "view": "archive", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "object_type": "emailthread", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_name": "Test Lead"}, "emitted_at": 1670413456121} +{"stream": "incoming_email_tasks", "data": {"assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "date": "2022-11-09T11:30:58+00:00", "date_updated": "2022-11-09T12:36:43.842000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "object_id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "assigned_to_name": "Jean Lafleur", "contact_name": "Iryna", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLi", "cleared_followups": [], "_type": "incoming_email", "emails": [], "is_complete": true, "date_created": "2022-11-09T11:30:58+00:00", "created_by_name": null, "updated_by_name": "Jean Lafleur", "created_by": null, "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "view": "archive", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "object_type": "emailthread", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_name": "Test Lead"}, "emitted_at": 1670413456126} +{"stream": "incoming_email_tasks", "data": {"assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "date": "2022-11-09", "date_updated": "2022-11-09T13:00:08.080000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "object_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "assigned_to_name": "Jean Lafleur", "contact_name": "Iryna", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "cleared_followups": [], "_type": "incoming_email", "emails": [], "is_complete": true, "date_created": "2022-11-09T12:32:37.001000+00:00", "created_by_name": null, "updated_by_name": "Jean Lafleur", "created_by": null, "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "view": "archive", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "object_type": "emailthread", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_name": "Test Lead"}, "emitted_at": 1670413456129} +{"stream": "incoming_email_tasks", "data": {"assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "noti_usYjV72fgEzHlmX8ZIkBFrFcrnI6ilJ5iZUI1SmNR0i", "date": "2022-11-09T12:42:01+00:00", "date_updated": "2022-11-11T07:55:12.073000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "object_id": "acti_ZtrsNQMEmg7RwStpMzckQc22tjvbESmIdfdBkChH7s5", "assigned_to_name": "Jean Lafleur", "contact_name": "Iryna", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting 2\nSaturday Nov 12, 2022 \u22c5 8pm \u2013 9pm\nEastern European Time - Kyiv\n\n\n\nOrganizer\niryna.grankova@airbyte.io\niryna.grankova@airbyte.io\n\n", "cleared_followups": [], "_type": "incoming_email", "emails": [], "is_complete": true, "date_created": "2022-11-09T12:42:01+00:00", "created_by_name": null, "updated_by_name": "Jean Lafleur", "created_by": null, "subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "view": "archive", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "object_type": "emailthread", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_name": "Test Lead"}, "emitted_at": 1670413456133} +{"stream": "email_followup_tasks", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "date_created": "2022-11-08T15:44:05.221000+00:00", "_type": "email_followup", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "subject": "(no subject)", "id": "noti_3I4QaKqYel0nzGyKT8mpDKy4q2KKu4IuIZZ3Gb7gs4x", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "contact_name": "Bruce Wayne", "date_updated": "2022-11-08T16:28:54.794000+00:00", "object_type": "emailthread", "body_preview": "Test", "created_by_name": "Jean Lafleur", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "assigned_to_name": "Jean Lafleur", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "view": "inbox", "date": "2022-11-15", "email_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "is_complete": false, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413458338} +{"stream": "email_followup_tasks", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "object_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "date_created": "2022-11-09T12:54:10.330000+00:00", "_type": "email_followup", "lead_name": "Test Lead", "subject": "Test Lead + Airbyte", "id": "noti_JU7vkNkhpywznaGu5P0WuBWxsMXtzZmkOSXaCxbxTsN", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "contact_name": "Iryna", "date_updated": "2022-11-09T12:54:10.330000+00:00", "object_type": "emailthread", "body_preview": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n ", "created_by_name": "Jean Lafleur", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "assigned_to_name": "Jean Lafleur", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "view": "inbox", "date": "2022-11-16", "email_id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "is_complete": false, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413458340} +{"stream": "opportunity_due_tasks", "data": {"created_by_name": "Jean Lafleur", "opportunity_value_formatted": "$500", "assigned_to_name": "Jean Lafleur", "opportunity_value": 50000, "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "date_created": "2021-07-13T11:39:04.316000+00:00", "opportunity_note": "Use opportunities to track which stage of the pipeline your deals are in and the revenue associated with them.", "contact_name": "Steli Efti", "id": "noti_ELGehUlDZ1pmlIeibPlLbTyruBTKdACAQ1q1XLiWo6B", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_name": "Close (Example\u00a0Lead)", "object_type": "opportunity", "view": "inbox", "_type": "opportunity_due", "is_complete": false, "opportunity_value_period": "one_time", "date_updated": "2021-08-18T10:26:44.323000+00:00", "object_id": "oppo_1TfmaSLuECcdSQIBnjUOBj1gAXdyrp4SFaogvcEmtbk", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "date": "2021-07-15", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413466146} +{"stream": "opportunity_due_tasks", "data": {"created_by_name": "Jean Lafleur", "opportunity_value_formatted": "$3,000", "assigned_to_name": "Jean Lafleur", "opportunity_value": 300000, "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "date_created": "2021-07-13T11:39:04.839000+00:00", "opportunity_note": "Gob's ready to buy a $3,000 suit.", "contact_name": null, "id": "noti_wcbYMl0dpbdcypRygf9jYd9axfIzvSsj06gXHmPmE4k", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_name": "Bluth Company (Example\u00a0Lead)", "object_type": "opportunity", "view": "inbox", "_type": "opportunity_due", "is_complete": false, "opportunity_value_period": "one_time", "date_updated": "2021-07-13T11:39:04.839000+00:00", "object_id": "oppo_NkKuhUWfDoErNArh44hw7jkkx7sCl5bhlamtezmX7BE", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "date": "2021-07-16", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413466148} +{"stream": "opportunity_due_tasks", "data": {"created_by_name": "Jean Lafleur", "opportunity_value_formatted": "$500", "assigned_to_name": "Jean Lafleur", "opportunity_value": 50000, "contact_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "date_created": "2021-07-13T11:39:05.083000+00:00", "opportunity_note": "Bruce needs new software for the Bat Cave.", "contact_name": null, "id": "noti_IPi8EZj1AtqSwbnSMg5OT2DpUqNHCl2RM7luvbx9zsp", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_type": "opportunity", "view": "inbox", "_type": "opportunity_due", "is_complete": false, "opportunity_value_period": "one_time", "date_updated": "2021-07-13T11:39:05.083000+00:00", "object_id": "oppo_jXatpqaQ3HK50yBO9vMWg2wFyHoqbCJtgbRYAMuEGor", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "date": "2021-07-15", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413466150} +{"stream": "opportunity_due_tasks", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-08T15:55:27.773000+00:00", "object_id": "oppo_QtfwXdJFxmOLRzd3mirP7S5vWWYTEho2uWtHYNSiOUE", "view": "inbox", "is_complete": false, "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:55:27.773000+00:00", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "opportunity_value": 10000, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "contact_name": "Iryna", "object_type": "opportunity", "id": "noti_mLYZbUFr2FuDE4ZH78FsYktgbfKjEnTqR1GW5qLv7sI", "date": "2022-11-16", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "assigned_to_name": "Jean Lafleur", "opportunity_value_formatted": "$100", "opportunity_value_period": "one_time", "lead_name": "Test Lead", "updated_by_name": "Jean Lafleur", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "_type": "opportunity_due", "opportunity_note": "Test"}, "emitted_at": 1670413466937} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "next_billing_on"], "data": {"address_id": null, "bundle_id": null, "carrier": "twilio", "country": "US", "date_created": "2022-11-08T12:35:29.464000+00:00", "date_updated": "2022-12-07T10:02:19.612000+00:00", "forward_to": null, "forward_to_enabled": false, "forward_to_formatted": null, "id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "is_group_number": false, "is_verified": false, "label": null, "last_billed_price": "1.15", "mms_enabled": true, "next_billing_on": "2023-01-07", "number": "+14156251293", "number_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "press_1_to_accept": true, "sms_enabled": true, "supports_mms_to_countries": ["CA", "US"], "supports_sms_to_countries": ["CA", "PR", "US"], "type": "internal", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "voicemail_greeting_url": "https://closeio-voicemail-greetings.s3.amazonaws.com/14bzVblrIaekmXSGQEKM11/undefined.mp3"}, "date_created": "2022-12-07T10:02:19.618000", "date_updated": "2022-12-07T10:02:19.618000", "id": "ev_55oIlccuq33rygMwXfIpGs", "lead_id": null, "meta": {}, "object_id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "object_type": "phone_number", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T14:32:41.736000+00:00", "next_billing_on": "2022-12-07"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471819} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "sales@close.com", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:43.734431", "date_updated": "2022-11-14T18:00:23.018212", "id": "sub_5kEnI9yY80Y9mjetrZqrxn", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "finished", "status_reason": null, "step_last_processed_at": "2022-11-14T18:00:22.946957", "updated_by_id": null}, "date_created": "2022-11-14T18:00:23.018000", "date_updated": "2022-11-14T18:00:23.018000", "id": "ev_48iztg3VRwJZ85LBTueKSr", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-11T18:00:19.231120", "status": "active", "step_last_processed_at": "2022-11-11T18:00:19.033470"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471821} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "success@close.com", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:52.688271", "date_updated": "2022-11-14T18:00:19.755534", "id": "sub_06TCoNKHiRvgz5eajOG5iM", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "finished", "status_reason": null, "step_last_processed_at": "2022-11-14T18:00:19.664436", "updated_by_id": null}, "date_created": "2022-11-14T18:00:19.755000", "date_updated": "2022-11-14T18:00:19.755000", "id": "ev_2qTcWa1q1eRPk0dnWdbNoV", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_06TCoNKHiRvgz5eajOG5iM", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-11T18:00:14.594586", "status": "active", "step_last_processed_at": "2022-11-11T18:00:14.199257"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471823} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "support@close.com", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:53.882456", "date_updated": "2022-11-14T18:00:19.172825", "id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "finished", "status_reason": null, "step_last_processed_at": "2022-11-14T18:00:19.077247", "updated_by_id": null}, "date_created": "2022-11-14T18:00:19.172000", "date_updated": "2022-11-14T18:00:19.172000", "id": "ev_6utQFdgoaeM0z2o4xbp9SV", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-11T18:00:12.983767", "status": "active", "step_last_processed_at": "2022-11-11T18:00:12.798902"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471825} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "nick@close.com", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:47.911844", "date_updated": "2022-11-14T18:00:15.171959", "id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "finished", "status_reason": null, "step_last_processed_at": "2022-11-14T18:00:15.094189", "updated_by_id": null}, "date_created": "2022-11-14T18:00:15.171000", "date_updated": "2022-11-14T18:00:15.171000", "id": "ev_6g9vIDEfxm8E2QFCrbkDBt", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-11T18:00:10.011102", "status": "active", "step_last_processed_at": "2022-11-11T18:00:09.574043"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471827} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status"], "data": {"_type": "Meeting", "activity_at": "2022-11-12T18:00:00+00:00", "attendees": [{"contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "email": "irina.grankova@gmail.com", "is_organizer": false, "name": null, "status": "yes", "user_id": null}, {"contact_id": null, "email": "iryna.grankova@airbyte.io", "is_organizer": true, "name": null, "status": "yes", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "calendar_event_link": null, "calendar_event_uids": ["1dep55p6mjf40lgbrv9r9j9hpo"], "connected_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-12T18:00:00+00:00", "date_updated": "2022-11-12T19:00:03.639000+00:00", "duration": 3600, "ends_at": "2022-11-12T19:00:00+00:00", "id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "integrations": [], "is_recurring": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "location": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "calendar", "starts_at": "2022-11-12T18:00:00+00:00", "status": "completed", "title": "Test meeting 2", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-12T19:00:03.651000", "date_updated": "2022-11-12T19:00:03.651000", "id": "ev_3sLL7z2qIVM2JZN7PzbO9x", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "object_type": "activity.meeting", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-12T18:00:01.148000+00:00", "status": "in-progress"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471829} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"_type": "Meeting", "activity_at": "2022-11-12T18:00:00+00:00", "attendees": [{"contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "email": "irina.grankova@gmail.com", "is_organizer": false, "name": null, "status": "yes", "user_id": null}, {"contact_id": null, "email": "iryna.grankova@airbyte.io", "is_organizer": true, "name": null, "status": "yes", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "calendar_event_link": null, "calendar_event_uids": ["1dep55p6mjf40lgbrv9r9j9hpo"], "connected_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-12T18:00:00+00:00", "date_updated": "2022-11-12T19:00:03.639000+00:00", "duration": 3600, "ends_at": "2022-11-12T19:00:00+00:00", "id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "integrations": [], "is_recurring": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "location": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "calendar", "starts_at": "2022-11-12T18:00:00+00:00", "status": "completed", "title": "Test meeting 2", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-12T19:00:03.651000", "date_updated": "2022-11-12T19:00:03.651000", "id": "ev_1KaAvpIRA3McUBuiACxSG5", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "object_type": "activity.meeting", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413471830} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status"], "data": {"_type": "Meeting", "activity_at": "2022-11-12T18:00:00+00:00", "attendees": [{"contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "email": "irina.grankova@gmail.com", "is_organizer": false, "name": null, "status": "yes", "user_id": null}, {"contact_id": null, "email": "iryna.grankova@airbyte.io", "is_organizer": true, "name": null, "status": "yes", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "calendar_event_link": null, "calendar_event_uids": ["1dep55p6mjf40lgbrv9r9j9hpo"], "connected_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-12T18:00:00+00:00", "date_updated": "2022-11-12T18:00:01.148000+00:00", "duration": 3600, "ends_at": "2022-11-12T19:00:00+00:00", "id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "integrations": [], "is_recurring": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "location": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "calendar", "starts_at": "2022-11-12T18:00:00+00:00", "status": "in-progress", "title": "Test meeting 2", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-12T18:00:01.158000", "date_updated": "2022-11-12T18:00:01.158000", "id": "ev_4rqeRxpiS8zV20QMQKDDmA", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "object_type": "activity.meeting", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:41:54.440000+00:00", "status": "upcoming"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471832} +{"stream": "events", "data": {"action": "started", "api_key_id": null, "changed_fields": [], "data": {"_type": "Meeting", "activity_at": "2022-11-12T18:00:00+00:00", "attendees": [{"contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "email": "irina.grankova@gmail.com", "is_organizer": false, "name": null, "status": "yes", "user_id": null}, {"contact_id": null, "email": "iryna.grankova@airbyte.io", "is_organizer": true, "name": null, "status": "yes", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "calendar_event_link": null, "calendar_event_uids": ["1dep55p6mjf40lgbrv9r9j9hpo"], "connected_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-12T18:00:00+00:00", "date_updated": "2022-11-12T18:00:01.148000+00:00", "duration": 3600, "ends_at": "2022-11-12T19:00:00+00:00", "id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "integrations": [], "is_recurring": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "location": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "calendar", "starts_at": "2022-11-12T18:00:00+00:00", "status": "in-progress", "title": "Test meeting 2", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-12T18:00:01.158000", "date_updated": "2022-11-12T18:00:01.158000", "id": "ev_4mwy6ojzuVypXDBQX4Hdt4", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "object_type": "activity.meeting", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413471834} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "status"], "data": {"created_by": null, "date_completed": "2022-11-11T18:00:19.033470+00:00", "date_created": "2022-11-11T17:00:12.301792", "date_sent": "2022-11-11T18:00:19.033470+00:00", "date_updated": "2022-11-11T18:00:19.268905", "email_id": null, "id": "subhis_2BlX9HChfOJf0C5LLuwDa6", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "completed", "step_id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "subject": null, "template_id": null, "template_name": null, "updated_by": null}, "date_created": "2022-11-11T18:00:19.268000", "date_updated": "2022-11-11T18:00:19.268000", "id": "ev_05kGl9G5GMTNAGTlKbCyAr", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_2BlX9HChfOJf0C5LLuwDa6", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-11T17:00:12.553530", "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471836} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "sales@close.com", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:43.734431", "date_updated": "2022-11-11T18:00:19.231120", "id": "sub_5kEnI9yY80Y9mjetrZqrxn", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-11T18:00:19.033470+00:00", "updated_by_id": null}, "date_created": "2022-11-11T18:00:19.231000", "date_updated": "2022-11-11T18:00:19.231000", "id": "ev_4QTG3mvmYDN6ZEU8G8eg5R", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-11T17:00:12.519664", "step_last_processed_at": "2022-11-11T17:00:12.301792"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471838} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "status"], "data": {"created_by": null, "date_completed": "2022-11-11T18:00:14.199257+00:00", "date_created": "2022-11-11T17:00:08.393601", "date_sent": "2022-11-11T18:00:14.199257+00:00", "date_updated": "2022-11-11T18:00:14.617297", "email_id": null, "id": "subhis_2KY7OJYrz0gV06N0wvuWeO", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_06TCoNKHiRvgz5eajOG5iM", "status": "completed", "step_id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "subject": null, "template_id": null, "template_name": null, "updated_by": null}, "date_created": "2022-11-11T18:00:14.617000", "date_updated": "2022-11-11T18:00:14.617000", "id": "ev_5Oiajq3U5g8OPYQJSCm6Ws", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_2KY7OJYrz0gV06N0wvuWeO", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-11T17:00:08.672838", "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471840} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "success@close.com", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:52.688271", "date_updated": "2022-11-11T18:00:14.594586", "id": "sub_06TCoNKHiRvgz5eajOG5iM", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-11T18:00:14.199257+00:00", "updated_by_id": null}, "date_created": "2022-11-11T18:00:14.594000", "date_updated": "2022-11-11T18:00:14.594000", "id": "ev_15sXuKqyASBZXho8ZygPx3", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_06TCoNKHiRvgz5eajOG5iM", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-11T17:00:08.622604", "step_last_processed_at": "2022-11-11T17:00:08.393601"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471842} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "status"], "data": {"created_by": null, "date_completed": "2022-11-11T18:00:12.798902+00:00", "date_created": "2022-11-11T17:00:06.950042", "date_sent": "2022-11-11T18:00:12.798902+00:00", "date_updated": "2022-11-11T18:00:13.013239", "email_id": null, "id": "subhis_5vIrVHNM9dTMug0ToOBzSC", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "status": "completed", "step_id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "subject": null, "template_id": null, "template_name": null, "updated_by": null}, "date_created": "2022-11-11T18:00:13.013000", "date_updated": "2022-11-11T18:00:13.013000", "id": "ev_6aG0YaIl9roZtWXJHgTxeU", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_5vIrVHNM9dTMug0ToOBzSC", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-11T17:00:07.297863", "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471844} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "support@close.com", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:53.882456", "date_updated": "2022-11-11T18:00:12.983767", "id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-11T18:00:12.798902+00:00", "updated_by_id": null}, "date_created": "2022-11-11T18:00:12.983000", "date_updated": "2022-11-11T18:00:12.983000", "id": "ev_4vpJCkGRLN9QOa5PWI81Pr", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-11T17:00:07.253063", "step_last_processed_at": "2022-11-11T17:00:06.950042"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471846} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "status"], "data": {"created_by": null, "date_completed": "2022-11-11T18:00:09.574043+00:00", "date_created": "2022-11-11T17:00:03.248771", "date_sent": "2022-11-11T18:00:09.574043+00:00", "date_updated": "2022-11-11T18:00:10.043346", "email_id": null, "id": "subhis_4Fg8HiJFmCovnP5yjXNpRg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "status": "completed", "step_id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "subject": null, "template_id": null, "template_name": null, "updated_by": null}, "date_created": "2022-11-11T18:00:10.043000", "date_updated": "2022-11-11T18:00:10.043000", "id": "ev_2hQoCNKoSnzOvBjQjEq2oP", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_4Fg8HiJFmCovnP5yjXNpRg", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-11T17:00:04.474797", "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471847} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "nick@close.com", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:47.911844", "date_updated": "2022-11-11T18:00:10.011102", "id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-11T18:00:09.574043+00:00", "updated_by_id": null}, "date_created": "2022-11-11T18:00:10.011000", "date_updated": "2022-11-11T18:00:10.011000", "id": "ev_6TaLjS9KvOlOdzJXft9v6t", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-11T17:00:04.384725", "step_last_processed_at": "2022-11-11T17:00:03.248771"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471849} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-11T17:00:12.301792", "date_sent": null, "date_updated": "2022-11-11T17:00:12.553530", "email_id": null, "id": "subhis_2BlX9HChfOJf0C5LLuwDa6", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "pending", "step_id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "subject": null, "template_id": null, "template_name": null, "updated_by": null}, "date_created": "2022-11-11T17:00:12.553000", "date_updated": "2022-11-11T17:00:12.553000", "id": "ev_3KqM5Rb4MFgRV0ToVnVkXt", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_2BlX9HChfOJf0C5LLuwDa6", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413471851} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "sales@close.com", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:43.734431", "date_updated": "2022-11-11T17:00:12.519664", "id": "sub_5kEnI9yY80Y9mjetrZqrxn", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-11T17:00:12.301792", "updated_by_id": null}, "date_created": "2022-11-11T17:00:12.519000", "date_updated": "2022-11-11T17:00:12.519000", "id": "ev_71GO2mracXz4IO2BzrYPar", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T17:53:35.714692", "step_last_processed_at": "2022-11-08T17:53:35.311139"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471853} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-11T17:00:08.393601", "date_sent": null, "date_updated": "2022-11-11T17:00:08.672838", "email_id": null, "id": "subhis_2KY7OJYrz0gV06N0wvuWeO", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_06TCoNKHiRvgz5eajOG5iM", "status": "pending", "step_id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "subject": null, "template_id": null, "template_name": null, "updated_by": null}, "date_created": "2022-11-11T17:00:08.672000", "date_updated": "2022-11-11T17:00:08.672000", "id": "ev_5mfT6ppTyNBdHurYiXQfkK", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_2KY7OJYrz0gV06N0wvuWeO", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413471855} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "success@close.com", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:52.688271", "date_updated": "2022-11-11T17:00:08.622604", "id": "sub_06TCoNKHiRvgz5eajOG5iM", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-11T17:00:08.393601", "updated_by_id": null}, "date_created": "2022-11-11T17:00:08.622000", "date_updated": "2022-11-11T17:00:08.622000", "id": "ev_3KlGVs2e9sJogcNgepyDrd", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_06TCoNKHiRvgz5eajOG5iM", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T17:12:08.155030", "step_last_processed_at": "2022-11-08T17:12:07.625391"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471857} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-11T17:00:06.950042", "date_sent": null, "date_updated": "2022-11-11T17:00:07.297863", "email_id": null, "id": "subhis_5vIrVHNM9dTMug0ToOBzSC", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "status": "pending", "step_id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "subject": null, "template_id": null, "template_name": null, "updated_by": null}, "date_created": "2022-11-11T17:00:07.297000", "date_updated": "2022-11-11T17:00:07.297000", "id": "ev_6O0qR7eUMqnEwI0dilGVwi", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_5vIrVHNM9dTMug0ToOBzSC", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413471859} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "support@close.com", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:53.882456", "date_updated": "2022-11-11T17:00:07.253063", "id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-11T17:00:06.950042", "updated_by_id": null}, "date_created": "2022-11-11T17:00:07.253000", "date_updated": "2022-11-11T17:00:07.253000", "id": "ev_3RDFCi25PdTd4dwZbjexl1", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T17:41:58.726863", "step_last_processed_at": "2022-11-08T17:41:58.196054"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471860} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-11T17:00:03.248771", "date_sent": null, "date_updated": "2022-11-11T17:00:04.474797", "email_id": null, "id": "subhis_4Fg8HiJFmCovnP5yjXNpRg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "status": "pending", "step_id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "subject": null, "template_id": null, "template_name": null, "updated_by": null}, "date_created": "2022-11-11T17:00:04.474000", "date_updated": "2022-11-11T17:00:04.474000", "id": "ev_1fJLbhl6uKq9MhmKponje9", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_4Fg8HiJFmCovnP5yjXNpRg", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413471862} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "nick@close.com", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:47.911844", "date_updated": "2022-11-11T17:00:04.384725", "id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-11T17:00:03.248771", "updated_by_id": null}, "date_created": "2022-11-11T17:00:04.384000", "date_updated": "2022-11-11T17:00:04.384000", "id": "ev_0HF3Ufm9kYBisBQBQacv9g", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T17:15:11.794926", "step_last_processed_at": "2022-11-08T17:15:11.279217"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471864} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "step_last_processed_at"], "data": {"calls_assigned_to": [], "contact_email": "support@close.com", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:12.582772", "date_updated": "2022-11-11T16:48:50.267818", "id": "sub_7Zv78mWCJuul1Ipd4EDE32", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "finished", "status_reason": null, "step_last_processed_at": "2022-11-11T16:48:50.199291", "updated_by_id": null}, "date_created": "2022-11-11T16:48:50.267000", "date_updated": "2022-11-11T16:48:50.267000", "id": "ev_47EsiEcxvCzVqO5JLVrCSm", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_7Zv78mWCJuul1Ipd4EDE32", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:48:47.699257", "status": "active", "step_last_processed_at": "2022-11-08T16:48:47.166705"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471866} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "step_last_processed_at"], "data": {"calls_assigned_to": [], "contact_email": "sales@close.com", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:14.589854", "date_updated": "2022-11-11T16:36:11.196484", "id": "sub_3AChiei0PuAIJ1X0OWnWNR", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "finished", "status_reason": null, "step_last_processed_at": "2022-11-11T16:36:11.118156", "updated_by_id": null}, "date_created": "2022-11-11T16:36:11.196000", "date_updated": "2022-11-11T16:36:11.196000", "id": "ev_4frYhmqpciWf3ZQqsmRCSq", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:36:07.768798", "status": "active", "step_last_processed_at": "2022-11-08T16:36:07.226556"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471868} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "step_last_processed_at"], "data": {"calls_assigned_to": [], "contact_email": "success@close.com", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:06.399661", "date_updated": "2022-11-11T16:24:35.013205", "id": "sub_174GiA85Ui8g1OuQUrzdWe", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "finished", "status_reason": null, "step_last_processed_at": "2022-11-11T16:24:34.948800", "updated_by_id": null}, "date_created": "2022-11-11T16:24:35.013000", "date_updated": "2022-11-11T16:24:35.013000", "id": "ev_6SnlbM14BIS1U3Twi6ffM0", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_174GiA85Ui8g1OuQUrzdWe", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:24:31.797778", "status": "active", "step_last_processed_at": "2022-11-08T16:24:31.194602"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471870} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "step_last_processed_at"], "data": {"calls_assigned_to": [], "contact_email": "nick@close.com", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:10.011072", "date_updated": "2022-11-11T16:23:07.273548", "id": "sub_3J812U6VNcZBmBDEJ1iIdX", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "finished", "status_reason": null, "step_last_processed_at": "2022-11-11T16:23:07.193294", "updated_by_id": null}, "date_created": "2022-11-11T16:23:07.273000", "date_updated": "2022-11-11T16:23:07.273000", "id": "ev_3HDHmiYBTpANFA7WVCN1go", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_3J812U6VNcZBmBDEJ1iIdX", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:23:04.849822", "status": "active", "step_last_processed_at": "2022-11-08T16:23:04.323897"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471872} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "phones", "title"], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-11T09:00:52.289000+00:00", "date_updated": "2022-11-11T09:02:10.996000+00:00", "emails": [], "id": "cont_b4h4BcmWn7rKbnsHQ0JfADwXGgndbpc5JlQEdHHyv78", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "name": "Yowan R", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [{"phone": "+16462558418", "phone_formatted": "+1 646-255-8418", "type": "office"}], "title": "Product Manager", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-11T09:02:10.998000", "date_updated": "2022-11-11T09:02:10.998000", "id": "ev_5qFKTlWbIWVdd8Kntv1Oqr", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "meta": {"request_method": "PUT", "request_path": "/api/v1/contact/cont_b4h4BcmWn7rKbnsHQ0JfADwXGgndbpc5JlQEdHHyv78/"}, "object_id": "cont_b4h4BcmWn7rKbnsHQ0JfADwXGgndbpc5JlQEdHHyv78", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-11T09:00:52.289000+00:00", "phones": [], "title": ""}, "request_id": "req_5cG47kQgJc1yc4nLUgwpl5", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471874} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_updated", "due_date"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-30T09:00:00+00:00", "date_created": "2022-11-11T09:01:05.650000+00:00", "date_updated": "2022-11-11T09:01:24.622000+00:00", "due_date": "2022-11-30T09:00:00+00:00", "id": "task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "lead_name": "Airbyte", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-11T09:01:24.625000", "date_updated": "2022-11-11T09:01:24.625000", "id": "ev_21owlxEH5iBTPYX8TJPNMg", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6/"}, "object_id": "task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-18", "date_updated": "2022-11-11T09:01:10.105000+00:00", "due_date": "2022-11-18"}, "request_id": "req_0cue9LhcPuj5iENtGRFcKy", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471875} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_updated", "due_date", "view"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-18", "date_created": "2022-11-11T09:01:05.650000+00:00", "date_updated": "2022-11-11T09:01:10.105000+00:00", "due_date": "2022-11-18", "id": "task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "lead_name": "Airbyte", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-11T09:01:10.107000", "date_updated": "2022-11-11T09:01:10.107000", "id": "ev_06VdLl0PhnXbpQTHJj4z5E", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6/"}, "object_id": "task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-11", "date_updated": "2022-11-11T09:01:05.650000+00:00", "due_date": "2022-11-11", "view": "inbox"}, "request_id": "req_1M5y8JPboapMhLHtlymEma", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471877} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-11", "date_created": "2022-11-11T09:01:05.650000+00:00", "date_updated": "2022-11-11T09:01:05.650000+00:00", "due_date": "2022-11-11", "id": "task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "lead_name": "Airbyte", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "date_created": "2022-11-11T09:01:05.652000", "date_updated": "2022-11-11T09:01:05.652000", "id": "ev_1PkO3WgOja5sGJYjNczlzt", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_1uqKlzwO0qLGYgBMT5DcLtklNmgtrUNVobSNEiPpoU6", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_3I6t2zVuHgHguRr7AMHCc0", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471879} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Created", "activity_at": "2022-11-11T09:00:52.285000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-11T09:00:52.285000+00:00", "date_updated": "2022-11-11T09:00:52.304000+00:00", "id": "acti_LBTzFHimY46YWxvE0xpsR3tiZCHKgj3LCFil3pIfgmg", "import_id": null, "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "ui", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-11T09:00:52.306000", "date_updated": "2022-11-11T09:00:52.306000", "id": "ev_3B6tZTB7iEKEcORW5oDGqH", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "acti_LBTzFHimY46YWxvE0xpsR3tiZCHKgj3LCFil3pIfgmg", "object_type": "activity.created", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_74rGxjJU5IjwSY4w4wJl0T", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471881} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"addresses": [], "contact_ids": ["cont_b4h4BcmWn7rKbnsHQ0JfADwXGgndbpc5JlQEdHHyv78"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-11T09:00:52.285000+00:00", "date_updated": "2022-11-11T09:00:52.293000+00:00", "description": "", "display_name": "Airbyte", "id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "name": "Airbyte", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-11T09:00:52.294000", "date_updated": "2022-11-11T09:00:52.294000", "id": "ev_2TSg6iKY7elcXnekLpZF4B", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_74rGxjJU5IjwSY4w4wJl0T", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471883} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-11T09:00:52.289000+00:00", "date_updated": "2022-11-11T09:00:52.289000+00:00", "emails": [], "id": "cont_b4h4BcmWn7rKbnsHQ0JfADwXGgndbpc5JlQEdHHyv78", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "name": "Yowan R", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-11T09:00:52.290000", "date_updated": "2022-11-11T09:00:52.290000", "id": "ev_1HSanX0WEhCITm2KAkdoJX", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "cont_b4h4BcmWn7rKbnsHQ0JfADwXGgndbpc5JlQEdHHyv78", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_74rGxjJU5IjwSY4w4wJl0T", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471885} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "emails", "is_complete", "is_new", "updated_by", "updated_by_name", "view"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting 2\nSaturday Nov 12, 2022 \u22c5 8pm \u2013 9pm\nEastern European Time - Kyiv\n\n\n\nOrganizer\niryna.grankova@airbyte.io\niryna.grankova@airbyte.io\n\n", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T12:42:01+00:00", "date_created": "2022-11-09T12:42:01+00:00", "date_updated": "2022-11-11T07:55:12.073000+00:00", "emails": [], "id": "noti_usYjV72fgEzHlmX8ZIkBFrFcrnI6ilJ5iZUI1SmNR0i", "is_complete": true, "is_new": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_ZtrsNQMEmg7RwStpMzckQc22tjvbESmIdfdBkChH7s5", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-11T07:55:12.075000", "date_updated": "2022-11-11T07:55:12.075000", "id": "ev_5ol2GRSHeCEkdiRAWZoSuJ", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/noti_usYjV72fgEzHlmX8ZIkBFrFcrnI6ilJ5iZUI1SmNR0i/"}, "object_id": "noti_usYjV72fgEzHlmX8ZIkBFrFcrnI6ilJ5iZUI1SmNR0i", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:42:06.949000+00:00", "emails": ["acti_5Y0g1Ty898ORU1yMffesNiTs3I4RvFdWWrTErpmJmYb"], "is_complete": false, "is_new": true, "updated_by": null, "updated_by_name": null, "view": "inbox"}, "request_id": "req_1GrMXgInNExfCs2bQKeu7E", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471887} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "template_id", "text"], "data": {"_type": "SMS", "activity_at": "2022-11-09T14:02:18.756000+00:00", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T14:02:18.756000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T14:02:24.943000+00:00", "direction": "outbound", "error_message": null, "id": "acti_CXrlrlHc8QpP5MBXqCfcJKpctDqBREuG3Whj0JQODu4", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T14:02:24.945000", "date_updated": "2022-11-09T14:02:24.945000", "id": "ev_5S0CD6NzWOUJ7HgY0BFQyx", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_CXrlrlHc8QpP5MBXqCfcJKpctDqBREuG3Whj0JQODu4/"}, "object_id": "acti_CXrlrlHc8QpP5MBXqCfcJKpctDqBREuG3Whj0JQODu4", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T14:02:18.756000+00:00", "template_id": "", "text": ""}, "request_id": "req_1VGVucHntYProTpX9NBI33", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471888} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-09T14:02:18.756000+00:00", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T14:02:18.756000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T14:02:18.756000+00:00", "direction": "outbound", "error_message": null, "id": "acti_CXrlrlHc8QpP5MBXqCfcJKpctDqBREuG3Whj0JQODu4", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T14:02:18.758000", "date_updated": "2022-11-09T14:02:18.758000", "id": "ev_4mgvv1aHfp4B3v1bsm07iu", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_CXrlrlHc8QpP5MBXqCfcJKpctDqBREuG3Whj0JQODu4", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_07md5Zd5TehlLAEfrRC9cb", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471890} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated"], "data": {"_type": "Call", "activity_at": "2022-11-09T13:57:14.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": "2", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T13:57:22.063000+00:00", "date_created": "2022-11-09T13:57:14.751000+00:00", "date_updated": "2022-11-09T13:57:40.167000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 17, "forwarded_to": null, "has_recording": false, "id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T13:57:40.179000", "date_updated": "2022-11-09T13:57:40.179000", "id": "ev_0W5q1JbyiJD2s4JcE071Fq", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-09T13:57:39.171000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413471892} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "duration", "is_joinable", "quality_info", "status"], "data": {"_type": "Call", "activity_at": "2022-11-09T13:57:14.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T13:57:22.063000+00:00", "date_created": "2022-11-09T13:57:14.751000+00:00", "date_updated": "2022-11-09T13:57:39.171000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 17, "forwarded_to": null, "has_recording": false, "id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"6e5c57bb64256b7a627434cf37060681724d29d006bd0b0126fade520b7757b4\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"7f076eba01c52904316889297b8e938d41ee6e8a5f3113e6c6d30072a9eee7c1\"},{\"deviceId\":\"02ce050e090c446c08a2f369d11befe4a043df584c6dcaa2818ce9673f44b77d\",\"kind\":\"audioinput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"7f076eba01c52904316889297b8e938d41ee6e8a5f3113e6c6d30072a9eee7c1\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"6e5c57bb64256b7a627434cf37060681724d29d006bd0b0126fade520b7757b4\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"0c2fb83a5a7f1c249e321b7bef9a883ddc1039b7e858e025d4251325e5a78ce4\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"4fd87581ccc1164765bc16e3ba97f63a1caa515db425d81894c68cc4a6387b77\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"7f076eba01c52904316889297b8e938d41ee6e8a5f3113e6c6d30072a9eee7c1\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"6e5c57bb64256b7a627434cf37060681724d29d006bd0b0126fade520b7757b4\"},{\"deviceId\":\"030fa574cbd9c7ce44ba12c33b7cafa13c1ace35207eb3e851371aa4ddca879a\",\"kind\":\"audiooutput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"7f076eba01c52904316889297b8e938d41ee6e8a5f3113e6c6d30072a9eee7c1\"},{\"deviceId\":\"77a66164273de44ca89916508139996aac0473f329234fae178faf773b59c8d8\",\"kind\":\"audiooutput\",\"label\":\"Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"4fd87581ccc1164765bc16e3ba97f63a1caa515db425d81894c68cc4a6387b77\"}],\"reports\":{\"googTrack_9bf324d8-d783-4fa4-8626-9dd49c3eec08\":{\"id\":\"googTrack_9bf324d8-d783-4fa4-8626-9dd49c3eec08\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googTrackId\":\"9bf324d8-d783-4fa4-8626-9dd49c3eec08\"},\"googLibjingleSession_7523768276989388533\":{\"id\":\"googLibjingleSession_7523768276989388533\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"0\",\"googTransmitBitrate\":\"0\"},\"googCertificate_92:17:D5:7D:27:7A:23:07:82:43:30:E1:92:53:DC:59:68:D5:B4:6D:BF:17:AD:07:10:8E:E1:02:97:D0:BD:65\":{\"id\":\"googCertificate_92:17:D5:7D:27:7A:23:07:82:43:30:E1:92:53:DC:59:68:D5:B4:6D:BF:17:AD:07:10:8E:E1:02:97:D0:BD:65\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googFingerprint\":\"92:17:D5:7D:27:7A:23:07:82:43:30:E1:92:53:DC:59:68:D5:B4:6D:BF:17:AD:07:10:8E:E1:02:97:D0:BD:65\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFTCBvaADAgECAgkAlx2Jo5hPmtYwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIyMTEwODEzNTcxNFoXDTIyMTIwOTEzNTcxNFowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE6vCpdFYNt75b7z1HR8qVbkHn5g5hTPwfY/ml15QMMAsJnowkIfm8hyMW4QhSa1HFSnJ63rYpkJYjEGOAAmYzXDAKBggqhkjOPQQDAgNHADBEAiAO8++g4YtkWIpPIFrTwE6J9H30ja9yjHyfjI3zG6rX0gIgLhNgxI8KpzSsTqdougZSF2J+JGlTSJa1DzueQszppjQ=\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_A1:C3:15:7D:EF:41:11:F7:77:B0:5A:46:5B:9B:F4:54:86:6F:CA:DC:BD:7E:DB:B8:3E:EF:2D:41:ED:5A:83:8A\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_92:17:D5:7D:27:7A:23:07:82:43:30:E1:92:53:DC:59:68:D5:B4:6D:BF:17:AD:07:10:8E:E1:02:97:D0:BD:65\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-5O29Ghu+\":{\"id\":\"Cand-5O29Ghu+\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"49362\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-339H09pv\":{\"id\":\"Cand-339H09pv\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"ssrc_2920358822_send\":{\"id\":\"ssrc_2920358822_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"audioInputLevel\":\"2015\",\"packetsLost\":\"0\",\"googRtt\":\"104\",\"totalSamplesDuration\":\"23.44\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"9bf324d8-d783-4fa4-8626-9dd49c3eec08\",\"totalAudioEnergy\":\"2.92717\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"2920358822\",\"googJitterReceived\":\"3\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"1135\",\"bytesSent\":\"87791\"},\"googTrack_f858c430-2ec3-435e-8fbd-9a9c75bb1521\":{\"id\":\"googTrack_f858c430-2ec3-435e-8fbd-9a9c75bb1521\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googTrackId\":\"f858c430-2ec3-435e-8fbd-9a9c75bb1521\"},\"googCertificate_A1:C3:15:7D:EF:41:11:F7:77:B0:5A:46:5B:9B:F4:54:86:6F:CA:DC:BD:7E:DB:B8:3E:EF:2D:41:ED:5A:83:8A\":{\"id\":\"googCertificate_A1:C3:15:7D:EF:41:11:F7:77:B0:5A:46:5B:9B:F4:54:86:6F:CA:DC:BD:7E:DB:B8:3E:EF:2D:41:ED:5A:83:8A\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googFingerprint\":\"A1:C3:15:7D:EF:41:11:F7:77:B0:5A:46:5B:9B:F4:54:86:6F:CA:DC:BD:7E:DB:B8:3E:EF:2D:41:ED:5A:83:8A\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBITCByKADAgECAhQa2tsWQJO4VqniKCfIGADJIY9GQTAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA4MTM1NzE1WhcNMjIxMjA5MTM1NzE1WjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASxgdwc5QaGD2jmwnfa9aUczyNIrXcrwcZ/EKJB1E/Z+tAkChjD5dNDhF9eJoocuqGFktg46mTavgdrGnOqxWjoMAoGCCqGSM49BAMCA0gAMEUCIQDUAWEnEVRCtgl9BFboKxWjLOW5qPX19q0ij/HdjLJgwwIgdoOtqcJJzaui6WMKE4/p7/O4mgZ63FwHElAs5tlwOlE=\"},\"Cand-acm+0HPw\":{\"id\":\"Cand-acm+0HPw\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"49362\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853824767\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:49362\",\"consentRequestsSent\":\"2\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"13\",\"googRemoteAddress\":\"3.122.181.92:17338\",\"googRtt\":\"71\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"105188\",\"responsesReceived\":\"13\",\"remoteCandidateId\":\"Cand-lZPiOWup\",\"localCandidateId\":\"Cand-acm+0HPw\",\"bytesSent\":\"100932\",\"packetsSent\":\"1147\"},\"Cand-lZPiOWup\":{\"id\":\"Cand-lZPiOWup\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"portNumber\":\"17338\",\"ipAddress\":\"3.122.181.92\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"ssrc_549970991_recv\":{\"id\":\"ssrc_549970991_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googDecodingCTN\":\"2286\",\"packetsLost\":\"4\",\"googSecondaryDecodedRate\":\"0\",\"googDecodingPLC\":\"43\",\"packetsReceived\":\"1083\",\"googExpandRate\":\"0.0452271\",\"googJitterReceived\":\"24\",\"googDecodingCNG\":\"0\",\"ssrc\":\"549970991\",\"googPreferredJitterBufferMs\":\"220\",\"googSpeechExpandRate\":\"0.0171509\",\"totalSamplesDuration\":\"22.86\",\"totalAudioEnergy\":\"3.2325\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"131\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"1\",\"googDecodingNormal\":\"2112\",\"googTrackId\":\"f858c430-2ec3-435e-8fbd-9a9c75bb1521\",\"audioOutputLevel\":\"1\",\"googAccelerateRate\":\"0.0137329\",\"bytesReceived\":\"92785\",\"googCurrentDelayMs\":\"247\",\"googDecodingCTSG\":\"0\",\"googCaptureStartNtpTimeMs\":\"3876991036420\",\"googPreemptiveExpandRate\":\"0.00512695\",\"googJitterBufferMs\":\"300\",\"googDecodingMuted\":\"121\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T13:57:38.913000", "date_updated": "2022-11-09T13:57:39.173000", "id": "ev_6btZfY99H6kI13Z9RBQ5g6", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN/"}, "object_id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T13:57:22.063000+00:00", "duration": 0, "is_joinable": true, "quality_info": "", "status": "in-progress"}, "request_id": "req_6S35wKAPyMjBcaLb89Xs9q", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471894} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T13:57:14.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T13:57:22.063000+00:00", "date_created": "2022-11-09T13:57:14.751000+00:00", "date_updated": "2022-11-09T13:57:39.171000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 17, "forwarded_to": null, "has_recording": false, "id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"6e5c57bb64256b7a627434cf37060681724d29d006bd0b0126fade520b7757b4\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"7f076eba01c52904316889297b8e938d41ee6e8a5f3113e6c6d30072a9eee7c1\"},{\"deviceId\":\"02ce050e090c446c08a2f369d11befe4a043df584c6dcaa2818ce9673f44b77d\",\"kind\":\"audioinput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"7f076eba01c52904316889297b8e938d41ee6e8a5f3113e6c6d30072a9eee7c1\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"6e5c57bb64256b7a627434cf37060681724d29d006bd0b0126fade520b7757b4\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"0c2fb83a5a7f1c249e321b7bef9a883ddc1039b7e858e025d4251325e5a78ce4\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"4fd87581ccc1164765bc16e3ba97f63a1caa515db425d81894c68cc4a6387b77\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"7f076eba01c52904316889297b8e938d41ee6e8a5f3113e6c6d30072a9eee7c1\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"6e5c57bb64256b7a627434cf37060681724d29d006bd0b0126fade520b7757b4\"},{\"deviceId\":\"030fa574cbd9c7ce44ba12c33b7cafa13c1ace35207eb3e851371aa4ddca879a\",\"kind\":\"audiooutput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"7f076eba01c52904316889297b8e938d41ee6e8a5f3113e6c6d30072a9eee7c1\"},{\"deviceId\":\"77a66164273de44ca89916508139996aac0473f329234fae178faf773b59c8d8\",\"kind\":\"audiooutput\",\"label\":\"Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"4fd87581ccc1164765bc16e3ba97f63a1caa515db425d81894c68cc4a6387b77\"}],\"reports\":{\"googTrack_9bf324d8-d783-4fa4-8626-9dd49c3eec08\":{\"id\":\"googTrack_9bf324d8-d783-4fa4-8626-9dd49c3eec08\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googTrackId\":\"9bf324d8-d783-4fa4-8626-9dd49c3eec08\"},\"googLibjingleSession_7523768276989388533\":{\"id\":\"googLibjingleSession_7523768276989388533\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"0\",\"googTransmitBitrate\":\"0\"},\"googCertificate_92:17:D5:7D:27:7A:23:07:82:43:30:E1:92:53:DC:59:68:D5:B4:6D:BF:17:AD:07:10:8E:E1:02:97:D0:BD:65\":{\"id\":\"googCertificate_92:17:D5:7D:27:7A:23:07:82:43:30:E1:92:53:DC:59:68:D5:B4:6D:BF:17:AD:07:10:8E:E1:02:97:D0:BD:65\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googFingerprint\":\"92:17:D5:7D:27:7A:23:07:82:43:30:E1:92:53:DC:59:68:D5:B4:6D:BF:17:AD:07:10:8E:E1:02:97:D0:BD:65\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFTCBvaADAgECAgkAlx2Jo5hPmtYwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIyMTEwODEzNTcxNFoXDTIyMTIwOTEzNTcxNFowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE6vCpdFYNt75b7z1HR8qVbkHn5g5hTPwfY/ml15QMMAsJnowkIfm8hyMW4QhSa1HFSnJ63rYpkJYjEGOAAmYzXDAKBggqhkjOPQQDAgNHADBEAiAO8++g4YtkWIpPIFrTwE6J9H30ja9yjHyfjI3zG6rX0gIgLhNgxI8KpzSsTqdougZSF2J+JGlTSJa1DzueQszppjQ=\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_A1:C3:15:7D:EF:41:11:F7:77:B0:5A:46:5B:9B:F4:54:86:6F:CA:DC:BD:7E:DB:B8:3E:EF:2D:41:ED:5A:83:8A\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_92:17:D5:7D:27:7A:23:07:82:43:30:E1:92:53:DC:59:68:D5:B4:6D:BF:17:AD:07:10:8E:E1:02:97:D0:BD:65\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-5O29Ghu+\":{\"id\":\"Cand-5O29Ghu+\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"49362\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-339H09pv\":{\"id\":\"Cand-339H09pv\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"ssrc_2920358822_send\":{\"id\":\"ssrc_2920358822_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"audioInputLevel\":\"2015\",\"packetsLost\":\"0\",\"googRtt\":\"104\",\"totalSamplesDuration\":\"23.44\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"9bf324d8-d783-4fa4-8626-9dd49c3eec08\",\"totalAudioEnergy\":\"2.92717\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"2920358822\",\"googJitterReceived\":\"3\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"1135\",\"bytesSent\":\"87791\"},\"googTrack_f858c430-2ec3-435e-8fbd-9a9c75bb1521\":{\"id\":\"googTrack_f858c430-2ec3-435e-8fbd-9a9c75bb1521\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googTrackId\":\"f858c430-2ec3-435e-8fbd-9a9c75bb1521\"},\"googCertificate_A1:C3:15:7D:EF:41:11:F7:77:B0:5A:46:5B:9B:F4:54:86:6F:CA:DC:BD:7E:DB:B8:3E:EF:2D:41:ED:5A:83:8A\":{\"id\":\"googCertificate_A1:C3:15:7D:EF:41:11:F7:77:B0:5A:46:5B:9B:F4:54:86:6F:CA:DC:BD:7E:DB:B8:3E:EF:2D:41:ED:5A:83:8A\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googFingerprint\":\"A1:C3:15:7D:EF:41:11:F7:77:B0:5A:46:5B:9B:F4:54:86:6F:CA:DC:BD:7E:DB:B8:3E:EF:2D:41:ED:5A:83:8A\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBITCByKADAgECAhQa2tsWQJO4VqniKCfIGADJIY9GQTAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA4MTM1NzE1WhcNMjIxMjA5MTM1NzE1WjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASxgdwc5QaGD2jmwnfa9aUczyNIrXcrwcZ/EKJB1E/Z+tAkChjD5dNDhF9eJoocuqGFktg46mTavgdrGnOqxWjoMAoGCCqGSM49BAMCA0gAMEUCIQDUAWEnEVRCtgl9BFboKxWjLOW5qPX19q0ij/HdjLJgwwIgdoOtqcJJzaui6WMKE4/p7/O4mgZ63FwHElAs5tlwOlE=\"},\"Cand-acm+0HPw\":{\"id\":\"Cand-acm+0HPw\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"49362\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853824767\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:49362\",\"consentRequestsSent\":\"2\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"13\",\"googRemoteAddress\":\"3.122.181.92:17338\",\"googRtt\":\"71\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"105188\",\"responsesReceived\":\"13\",\"remoteCandidateId\":\"Cand-lZPiOWup\",\"localCandidateId\":\"Cand-acm+0HPw\",\"bytesSent\":\"100932\",\"packetsSent\":\"1147\"},\"Cand-lZPiOWup\":{\"id\":\"Cand-lZPiOWup\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"portNumber\":\"17338\",\"ipAddress\":\"3.122.181.92\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"ssrc_549970991_recv\":{\"id\":\"ssrc_549970991_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T13:57:38.286Z\",\"googDecodingCTN\":\"2286\",\"packetsLost\":\"4\",\"googSecondaryDecodedRate\":\"0\",\"googDecodingPLC\":\"43\",\"packetsReceived\":\"1083\",\"googExpandRate\":\"0.0452271\",\"googJitterReceived\":\"24\",\"googDecodingCNG\":\"0\",\"ssrc\":\"549970991\",\"googPreferredJitterBufferMs\":\"220\",\"googSpeechExpandRate\":\"0.0171509\",\"totalSamplesDuration\":\"22.86\",\"totalAudioEnergy\":\"3.2325\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"131\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"1\",\"googDecodingNormal\":\"2112\",\"googTrackId\":\"f858c430-2ec3-435e-8fbd-9a9c75bb1521\",\"audioOutputLevel\":\"1\",\"googAccelerateRate\":\"0.0137329\",\"bytesReceived\":\"92785\",\"googCurrentDelayMs\":\"247\",\"googDecodingCTSG\":\"0\",\"googCaptureStartNtpTimeMs\":\"3876991036420\",\"googPreemptiveExpandRate\":\"0.00512695\",\"googJitterBufferMs\":\"300\",\"googDecodingMuted\":\"121\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T13:57:39.173000", "date_updated": "2022-11-09T13:57:39.173000", "id": "ev_5fQBTX2BbfttnmYjdpWtxt", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN/"}, "object_id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6S35wKAPyMjBcaLb89Xs9q", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471896} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_answered", "date_updated", "disposition", "status"], "data": {"_type": "Call", "activity_at": "2022-11-09T13:57:14.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T13:57:22.063000+00:00", "date_created": "2022-11-09T13:57:14.751000+00:00", "date_updated": "2022-11-09T13:57:22.063000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "is_forwarded": false, "is_joinable": true, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "in-progress", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T13:57:22.065000", "date_updated": "2022-11-09T13:57:22.065000", "id": "ev_4NYibtfLjbUbsfUOhlzqZF", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN/"}, "object_id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_answered": null, "date_updated": "2022-11-09T13:57:16.999000+00:00", "disposition": null, "status": "created"}, "request_id": "req_7NoJk1yaq32lu6mMAtjlnM", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471898} +{"stream": "events", "data": {"action": "answered", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T13:57:14.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T13:57:22.063000+00:00", "date_created": "2022-11-09T13:57:14.751000+00:00", "date_updated": "2022-11-09T13:57:22.063000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "is_forwarded": false, "is_joinable": true, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "in-progress", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T13:57:22.065000", "date_updated": "2022-11-09T13:57:22.065000", "id": "ev_3m4xBf49tDGN55esUK5E2a", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN/"}, "object_id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_7NoJk1yaq32lu6mMAtjlnM", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471900} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_joinable", "local_country_iso", "local_phone", "local_phone_formatted"], "data": {"_type": "Call", "activity_at": "2022-11-09T13:57:14.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T13:57:14.751000+00:00", "date_updated": "2022-11-09T13:57:16.999000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "is_forwarded": false, "is_joinable": true, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T13:57:15.653000", "date_updated": "2022-11-09T13:57:17.002000", "id": "ev_2EMdV2XV0YjaX0moAasStV", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/conference/acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN/"}, "object_id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T13:57:14.751000+00:00", "is_joinable": false, "local_country_iso": "", "local_phone": null, "local_phone_formatted": null}, "request_id": "req_7f6cS2cYziqjlI92PLCYIu", "user_id": null}, "emitted_at": 1670413471902} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T13:57:14.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T13:57:14.751000+00:00", "date_updated": "2022-11-09T13:57:14.751000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T13:57:14.754000", "date_updated": "2022-11-09T13:57:14.754000", "id": "ev_7OK5ZQaGXyvLmk2ROEZG9o", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/call/"}, "object_id": "acti_ZgqHg31m0XXDZPwaxUVUNOhnEoLSG3fY8rMn9iIS3cN", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_7g6ERLmo8hR1Wft7A6ayIu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471904} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-09T13:56:39.879000", "date_updated": "2022-11-09T13:56:39.879000", "id": "ev_2cVCCLY50DteQvfqptcJ51", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "DELETE", "request_path": "/api/v1/activity/email/acti_LFAYnzM70nWiwv3v6MHvRIaD2O71MgVgW4HPiog0TcA/"}, "object_id": "acti_FjliW8Z0f3It8u9tQSbsoBa8pUqyBU5I4fkXuAAcARJ", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "EmailThread", "activity_at": "2022-11-09T13:56:31.684000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T13:56:31.684000+00:00", "date_updated": "2022-11-09T13:56:31.686000+00:00", "email_ids": [], "id": "acti_FjliW8Z0f3It8u9tQSbsoBa8pUqyBU5I4fkXuAAcARJ", "latest_normalized_subject": "", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "request_id": "req_1rWRzsxAkFI3EBPSQBsYVf", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471906} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-09T13:56:39.843000", "date_updated": "2022-11-09T13:56:39.843000", "id": "ev_4Qx7GCsHWSYp3mbMjQexOp", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "DELETE", "request_path": "/api/v1/activity/email/acti_LFAYnzM70nWiwv3v6MHvRIaD2O71MgVgW4HPiog0TcA/"}, "object_id": "acti_LFAYnzM70nWiwv3v6MHvRIaD2O71MgVgW4HPiog0TcA", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "Email", "activity_at": "2022-11-09T13:56:31.683000+00:00", "attachments": [], "bcc": [], "body_html": "", "body_preview": null, "body_text": "", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T13:56:31.683000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T13:56:31.690000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_LFAYnzM70nWiwv3v6MHvRIaD2O71MgVgW4HPiog0TcA", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "", "template_id": null, "template_name": null, "thread_id": "acti_FjliW8Z0f3It8u9tQSbsoBa8pUqyBU5I4fkXuAAcARJ", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "request_id": "req_1rWRzsxAkFI3EBPSQBsYVf", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471908} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-09T13:56:31.683000+00:00", "attachments": [], "bcc": [], "body_html": "", "body_preview": null, "body_text": "", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T13:56:31.683000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T13:56:31.690000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_LFAYnzM70nWiwv3v6MHvRIaD2O71MgVgW4HPiog0TcA", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "", "template_id": null, "template_name": null, "thread_id": "acti_FjliW8Z0f3It8u9tQSbsoBa8pUqyBU5I4fkXuAAcARJ", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T13:56:31.691000", "date_updated": "2022-11-09T13:56:31.691000", "id": "ev_6zPivftRTshed4CPuhXrfW", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_LFAYnzM70nWiwv3v6MHvRIaD2O71MgVgW4HPiog0TcA", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1VcwC9TRCRWkCTQn0djr39", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471910} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-09T13:56:31.684000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T13:56:31.684000+00:00", "date_updated": "2022-11-09T13:56:31.686000+00:00", "email_ids": ["acti_LFAYnzM70nWiwv3v6MHvRIaD2O71MgVgW4HPiog0TcA"], "id": "acti_FjliW8Z0f3It8u9tQSbsoBa8pUqyBU5I4fkXuAAcARJ", "latest_normalized_subject": "", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T13:56:31.688000", "date_updated": "2022-11-09T13:56:31.688000", "id": "ev_5f2HlhzwON5pupKlzLgeu5", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_FjliW8Z0f3It8u9tQSbsoBa8pUqyBU5I4fkXuAAcARJ", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1VcwC9TRCRWkCTQn0djr39", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413471912} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-09T12:54:23.167000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

I'm Jean with Airbyte. We help companies in the space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n ", "body_text": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:03.668000+00:00", "date_scheduled": null, "date_sent": "2022-11-09T12:54:23.167000+00:00", "date_updated": "2022-11-09T13:39:37.547000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 12:54:23 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166799846322.15922.4962027989641879748@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test Lead + Airbyte", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<166799846322.15922.4962027989641879748@smtpgw.close.com>", "<166799846322.15922.14988047742178474967@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "104.28.131.168", "opened_at": "2022-11-09T13:39:37.547000+00:00", "opened_by": "irina.grankova@gmail.com", "user_agent": "Mozilla/5.0"}], "opens_summary": "Opened by irina.grankova@gmail.com (2022-11-09)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Test Lead + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T13:39:37.549000", "date_updated": "2022-11-09T13:39:37.549000", "id": "ev_4aWIHBPXnTwR829WulTlLT", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "GET", "request_path": "/t/a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j/7LkEiQUps7.png"}, "object_id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:54:24.761000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_62uQZGNcUqvMhdcGnzsTMV", "user_id": null}, "emitted_at": 1670413472652} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_created", "date_updated", "emails", "is_complete", "is_new"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09", "date_created": "2022-11-09T12:32:37.001000+00:00", "date_updated": "2022-11-09T13:00:08.080000+00:00", "emails": [], "id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "is_complete": true, "is_new": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": null}, "date_created": "2022-11-09T13:00:08.082000", "date_updated": "2022-11-09T13:00:08.082000", "id": "ev_1dR6NTbArVvg2zo9KqABlR", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_created": "2022-11-09T12:32:37+00:00", "date_updated": "2022-11-09T12:36:09.521000+00:00", "emails": ["acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa"], "is_complete": false, "is_new": true}, "request_id": null, "user_id": null}, "emitted_at": 1670413472654} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:26.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T12:55:26.751000+00:00", "date_updated": "2022-11-09T12:57:27.648000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:57:27.656000", "date_updated": "2022-11-09T12:57:27.656000", "id": "ev_6AoZ0LrCyEHzR4XIQZZTDN", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472656} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "disposition", "status"], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:26.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T12:55:26.751000+00:00", "date_updated": "2022-11-09T12:57:27.648000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:57:27.656000", "date_updated": "2022-11-09T12:57:27.656000", "id": "ev_0fcS3DpjAiPkRtw3eEGE21", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:55:28.209000+00:00", "disposition": null, "status": "created"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472658} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "note"], "data": {"_type": "Call", "activity_at": "2022-11-08T15:55:39.770000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:55:39.770000+00:00", "date_updated": "2022-11-09T12:56:13.631000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "blocked", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "Test test", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+380636306253", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"02ce050e090c446c08a2f369d11befe4a043df584c6dcaa2818ce9673f44b77d\",\"kind\":\"audioinput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"01dd010c038de56ab637b74ad0cb07f74d4ed1b558a5d201db5fc811f0b7214c\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"dd3e8462a7fc3ea5a14a0d9eb6009918071a82b3a1d120666e645a849a13e12a\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"030fa574cbd9c7ce44ba12c33b7cafa13c1ace35207eb3e851371aa4ddca879a\",\"kind\":\"audiooutput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"77a66164273de44ca89916508139996aac0473f329234fae178faf773b59c8d8\",\"kind\":\"audiooutput\",\"label\":\"Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"dd3e8462a7fc3ea5a14a0d9eb6009918071a82b3a1d120666e645a849a13e12a\"}],\"reports\":{\"googTrack_7d8641fc-37f3-4975-8236-3f6c9b4e2b88\":{\"id\":\"googTrack_7d8641fc-37f3-4975-8236-3f6c9b4e2b88\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googTrackId\":\"7d8641fc-37f3-4975-8236-3f6c9b4e2b88\"},\"googLibjingleSession_6502613843596828260\":{\"id\":\"googLibjingleSession_6502613843596828260\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"4\",\"googTransmitBitrate\":\"0\"},\"googCertificate_3C:D5:A6:A1:C6:12:95:15:31:67:22:85:2E:F0:8A:F5:82:88:B0:85:75:E2:4E:B3:C6:76:67:EC:14:9E:F1:74\":{\"id\":\"googCertificate_3C:D5:A6:A1:C6:12:95:15:31:67:22:85:2E:F0:8A:F5:82:88:B0:85:75:E2:4E:B3:C6:76:67:EC:14:9E:F1:74\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googFingerprint\":\"3C:D5:A6:A1:C6:12:95:15:31:67:22:85:2E:F0:8A:F5:82:88:B0:85:75:E2:4E:B3:C6:76:67:EC:14:9E:F1:74\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFTCBvKADAgECAgh4Rdz2DA7OEzAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZXZWJSVEMwHhcNMjIxMTA3MTU1NTQwWhcNMjIxMjA4MTU1NTQwWjARMQ8wDQYDVQQDDAZXZWJSVEMwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATGLbGtLviNzMYC7UJFXyjT1YzsP0YJQ5NGpAj63rehJJ9kkyVmhwQXL2suNwfG/TXfsmLc2Hjoz3ToX7/mk4TZMAoGCCqGSM49BAMCA0gAMEUCIQDs6J88609CMoiF9r3GU7ywBLHKlawn8qaUB64F1KtzJwIgC06MwAJZK5J05DAtc1E7IY803bvVlx5AjJ/oYXRs3ZQ=\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_33:2A:09:C7:85:E8:48:50:82:B1:7E:D3:8A:EE:D8:B4:FA:37:08:88:E5:73:29:16:CF:B0:22:CB:41:EB:3A:79\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_3C:D5:A6:A1:C6:12:95:15:31:67:22:85:2E:F0:8A:F5:82:88:B0:85:75:E2:4E:B3:C6:76:67:EC:14:9E:F1:74\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-ptPI/8iJ\":{\"id\":\"Cand-ptPI/8iJ\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"54281\",\"networkType\":\"lan\",\"ipAddress\":\"172.22.63.145\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-09XybDei\":{\"id\":\"Cand-09XybDei\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"54282\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122194687\"},\"Cand-JHFfRiby\":{\"id\":\"Cand-JHFfRiby\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"portNumber\":\"9\",\"networkType\":\"lan\",\"ipAddress\":\"172.22.63.145\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"Cand-KNXs7pfP\":{\"id\":\"Cand-KNXs7pfP\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518214911\"},\"ssrc_1491824088_send\":{\"id\":\"ssrc_1491824088_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"audioInputLevel\":\"1305\",\"packetsLost\":\"0\",\"googRtt\":\"41\",\"totalSamplesDuration\":\"10.84\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"7d8641fc-37f3-4975-8236-3f6c9b4e2b88\",\"totalAudioEnergy\":\"0.17414\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"1491824088\",\"googJitterReceived\":\"2\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"453\",\"bytesSent\":\"36493\"},\"googTrack_9823eb2d-d356-48fa-be23-e524a5fbeb0f\":{\"id\":\"googTrack_9823eb2d-d356-48fa-be23-e524a5fbeb0f\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googTrackId\":\"9823eb2d-d356-48fa-be23-e524a5fbeb0f\"},\"googCertificate_33:2A:09:C7:85:E8:48:50:82:B1:7E:D3:8A:EE:D8:B4:FA:37:08:88:E5:73:29:16:CF:B0:22:CB:41:EB:3A:79\":{\"id\":\"googCertificate_33:2A:09:C7:85:E8:48:50:82:B1:7E:D3:8A:EE:D8:B4:FA:37:08:88:E5:73:29:16:CF:B0:22:CB:41:EB:3A:79\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googFingerprint\":\"33:2A:09:C7:85:E8:48:50:82:B1:7E:D3:8A:EE:D8:B4:FA:37:08:88:E5:73:29:16:CF:B0:22:CB:41:EB:3A:79\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBITCByKADAgECAhQYn2EBUe7cOu6TojMnF084mg39ETAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA3MTU1NTQwWhcNMjIxMjA4MTU1NTQwWjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASpGYWWHn+7WsEVbebOoh2t8tVjDXrgCrfMW5gRd1BZvxOZOjy26b3ujeg4Omu0j3FJXaUKAo/+cDV1tWUKXjMPMAoGCCqGSM49BAMCA0gAMEUCIQDQ6Ihc7VdXbgKr1FjFkwiH6l5BJDJ4P7Cgg0gj9kLEAwIgHBU9WDZ6iBtB9IsaVadXT7CD4A+mX2VGj6UPD4xhQsk=\"},\"Cand-N3dAA/zp\":{\"id\":\"Cand-N3dAA/zp\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"54282\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853759231\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:54282\",\"consentRequestsSent\":\"1\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"7\",\"googRemoteAddress\":\"3.122.181.31:14268\",\"googRtt\":\"36\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"59076\",\"responsesReceived\":\"7\",\"remoteCandidateId\":\"Cand-xxV+nP6X\",\"localCandidateId\":\"Cand-N3dAA/zp\",\"bytesSent\":\"42535\",\"packetsSent\":\"460\"},\"Cand-xxV+nP6X\":{\"id\":\"Cand-xxV+nP6X\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"portNumber\":\"14268\",\"ipAddress\":\"3.122.181.31\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"Conn-0-1-1\":{\"id\":\"Conn-0-1-1\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"false\",\"googLocalAddress\":\"172.22.63.145:54281\",\"consentRequestsSent\":\"16\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"local\",\"googWritable\":\"false\",\"requestsSent\":\"16\",\"googRemoteAddress\":\"3.122.181.31:14268\",\"googRtt\":\"3000\",\"googActiveConnection\":\"false\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"0\",\"responsesReceived\":\"0\",\"remoteCandidateId\":\"Cand-xxV+nP6X\",\"localCandidateId\":\"Cand-ptPI/8iJ\",\"bytesSent\":\"0\",\"packetsSent\":\"0\"},\"ssrc_493233143_recv\":{\"id\":\"ssrc_493233143_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googDecodingCTN\":\"903\",\"packetsLost\":\"2\",\"googSecondaryDecodedRate\":\"0.00244141\",\"googDecodingPLC\":\"34\",\"packetsReceived\":\"407\",\"googJitterReceived\":\"2\",\"googDecodingCNG\":\"0\",\"ssrc\":\"493233143\",\"googPreferredJitterBufferMs\":\"80\",\"googSpeechExpandRate\":\"0.0394287\",\"totalSamplesDuration\":\"9.03\",\"totalAudioEnergy\":\"0.213002\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"81\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"0.996887\",\"googDecodingNormal\":\"788\",\"googTrackId\":\"9823eb2d-d356-48fa-be23-e524a5fbeb0f\",\"audioOutputLevel\":\"2302\",\"googAccelerateRate\":\"0.0200806\",\"bytesReceived\":\"53896\",\"googCurrentDelayMs\":\"266\",\"googDecodingCTSG\":\"0\",\"googExpandRate\":\"0.0723267\",\"googPreemptiveExpandRate\":\"0.00976562\",\"googJitterBufferMs\":\"197\",\"googDecodingMuted\":\"80\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "UA", "remote_phone": "+380636306253", "remote_phone_formatted": "+380 63 630 6253", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "failed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:56:11.137000", "date_updated": "2022-11-09T12:56:13.634000", "id": "ev_4n5Fv3njiVqz29LWEohcHW", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/call/acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG/"}, "object_id": "acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:55:51.226000+00:00", "note": ""}, "request_id": "req_0xqhgkFBVrDTTtrecHiuOf", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472660} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "quality_info"], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:26.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T12:55:26.751000+00:00", "date_updated": "2022-11-09T12:55:28.209000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Microphone (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"82760bc0af34bfefd98ecfeec1879bfe38abf514ce89a8c96166511998b12818\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Speakers (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Speakers (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"}],\"reports\":{\"googTrack_6e261e9f-d565-4b88-bcf0-e575827ef07e\":{\"id\":\"googTrack_6e261e9f-d565-4b88-bcf0-e575827ef07e\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"googTrackId\":\"6e261e9f-d565-4b88-bcf0-e575827ef07e\"},\"googLibjingleSession_2838677533892739123\":{\"id\":\"googLibjingleSession_2838677533892739123\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"0\",\"googTransmitBitrate\":\"0\"},\"googCertificate_9F:CF:98:FA:9A:5A:AD:0D:BD:73:20:06:AD:8E:7D:D8:BC:33:29:A1:01:EF:9C:05:62:83:9E:9B:05:8C:4A:B0\":{\"id\":\"googCertificate_9F:CF:98:FA:9A:5A:AD:0D:BD:73:20:06:AD:8E:7D:D8:BC:33:29:A1:01:EF:9C:05:62:83:9E:9B:05:8C:4A:B0\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"googFingerprint\":\"9F:CF:98:FA:9A:5A:AD:0D:BD:73:20:06:AD:8E:7D:D8:BC:33:29:A1:01:EF:9C:05:62:83:9E:9B:05:8C:4A:B0\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFzCBvaADAgECAgkAq2xFbHyw6GYwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIyMTEwODEyNTUyNloXDTIyMTIwOTEyNTUyNlowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEd8wWHr3V95/pXJ408FMjZcwOeNEAWxnWuXmjoJWQxB50WUNOLP+xZAc1cN4BBJXT7Vx30UYhRfn6wuFYDtVKbTAKBggqhkjOPQQDAgNJADBGAiEAmJCDB0zTzorvEoxavahW8hh6lnfxqq1O/S8VF1vb9RcCIQCqp+V39/nfwdJpm+MBp9gLju5p7jUJ4gT6+5WX4JM6pg==\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_97:A6:08:A2:D4:B6:F1:13:D7:91:0F:94:18:5D:7B:52:CE:E5:95:A6:75:FE:AE:DE:5D:7D:0B:24:D6:57:5B:37\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_9F:CF:98:FA:9A:5A:AD:0D:BD:73:20:06:AD:8E:7D:D8:BC:33:29:A1:01:EF:9C:05:62:83:9E:9B:05:8C:4A:B0\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-z+LG9ev9\":{\"id\":\"Cand-z+LG9ev9\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"51201\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-N/yZUUni\":{\"id\":\"Cand-N/yZUUni\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"ssrc_4191424957_send\":{\"id\":\"ssrc_4191424957_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"audioInputLevel\":\"37\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googTrackId\":\"6e261e9f-d565-4b88-bcf0-e575827ef07e\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"totalAudioEnergy\":\"4.82827e-08\",\"ssrc\":\"4191424957\",\"googTypingNoiseState\":\"false\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"packetsSent\":\"4\",\"bytesSent\":\"299\",\"totalSamplesDuration\":\"0.8\"},\"googTrack_230935e3-258b-4998-88f6-1892c7342109\":{\"id\":\"googTrack_230935e3-258b-4998-88f6-1892c7342109\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"googTrackId\":\"230935e3-258b-4998-88f6-1892c7342109\"},\"googCertificate_97:A6:08:A2:D4:B6:F1:13:D7:91:0F:94:18:5D:7B:52:CE:E5:95:A6:75:FE:AE:DE:5D:7D:0B:24:D6:57:5B:37\":{\"id\":\"googCertificate_97:A6:08:A2:D4:B6:F1:13:D7:91:0F:94:18:5D:7B:52:CE:E5:95:A6:75:FE:AE:DE:5D:7D:0B:24:D6:57:5B:37\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"googFingerprint\":\"97:A6:08:A2:D4:B6:F1:13:D7:91:0F:94:18:5D:7B:52:CE:E5:95:A6:75:FE:AE:DE:5D:7D:0B:24:D6:57:5B:37\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBITCByKADAgECAhQFbrwwGF/ClgNMUwJZgmncKoxpUDAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA4MTI1NTI3WhcNMjIxMjA5MTI1NTI3WjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASoI1NfBaPCav+9hZEY4mfI23dtR9MNJoNlNWIZ8y7Tbi+wzJbeKPHMHK/8l0yKgTwWx/8AjjdFouCp51BlkV9jMAoGCCqGSM49BAMCA0gAMEUCIQCrQ2fkUwzTyjvGaSrdUnBBenm0qVhpABOFR82lxfK8+gIgdjvuKgIXpRgctv87l3XPdpaHf6ZZsMW2d0v6hrBnMJY=\"},\"Cand-qNzkwybV\":{\"id\":\"Cand-qNzkwybV\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"51201\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853824767\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:51201\",\"consentRequestsSent\":\"1\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"3\",\"googRemoteAddress\":\"3.122.181.213:16172\",\"googRtt\":\"33\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"843\",\"responsesReceived\":\"3\",\"remoteCandidateId\":\"Cand-gyaiPDi/\",\"localCandidateId\":\"Cand-qNzkwybV\",\"bytesSent\":\"1552\",\"packetsSent\":\"6\"},\"Cand-gyaiPDi/\":{\"id\":\"Cand-gyaiPDi/\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"portNumber\":\"16172\",\"ipAddress\":\"3.122.181.213\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"ssrc_1501784128_recv\":{\"id\":\"ssrc_1501784128_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T12:55:27.600Z\",\"googCaptureStartNtpTimeMs\":\"0\",\"packetsLost\":\"0\",\"googSecondaryDecodedRate\":\"0\",\"googDecodingPLC\":\"0\",\"packetsReceived\":\"0\",\"googJitterReceived\":\"0\",\"googDecodingCNG\":\"0\",\"ssrc\":\"1501784128\",\"googPreferredJitterBufferMs\":\"0\",\"googSpeechExpandRate\":\"0\",\"totalSamplesDuration\":\"0\",\"totalAudioEnergy\":\"0\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingCTN\":\"0\",\"googDecodingPLCCNG\":\"0\",\"googCodecName\":\"\",\"googDecodingNormal\":\"0\",\"googTrackId\":\"230935e3-258b-4998-88f6-1892c7342109\",\"googSecondaryDiscardedRate\":\"0\",\"googAccelerateRate\":\"0\",\"bytesReceived\":\"0\",\"googCurrentDelayMs\":\"0\",\"googDecodingCTSG\":\"0\",\"googExpandRate\":\"0\",\"googPreemptiveExpandRate\":\"0\",\"googJitterBufferMs\":\"0\",\"googDecodingMuted\":\"0\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:28.212000", "date_updated": "2022-11-09T12:55:28.212000", "id": "ev_338JTqnC3OU2wyZZaX1YmQ", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/call/acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF/"}, "object_id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:55:27.654000+00:00", "quality_info": ""}, "request_id": "req_6kWGiNtC8Jy2st7fvcrCfo", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472662} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "local_country_iso", "local_phone", "local_phone_formatted"], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:26.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T12:55:26.751000+00:00", "date_updated": "2022-11-09T12:55:27.654000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:27.655000", "date_updated": "2022-11-09T12:55:27.655000", "id": "ev_0yZfkcZnlYherfA6dd39ey", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/routing/"}, "object_id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:55:26.751000+00:00", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null}, "request_id": "req_4Cdjwr8xSI3N7TsM4HcJ3B", "user_id": null}, "emitted_at": 1670413472664} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:26.751000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T12:55:26.751000+00:00", "date_updated": "2022-11-09T12:55:26.751000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:26.753000", "date_updated": "2022-11-09T12:55:26.753000", "id": "ev_1Nhks2bwYGLo4vRMuf9aDf", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/call/"}, "object_id": "acti_694PvtEQICHUY5umTjEM8nl9bLU0MmWWV6HhMEcqAEF", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2UazVhtujP2Wh8avRgpiou", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472666} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated"], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:03.314000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": "2", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T12:55:11.703000+00:00", "date_created": "2022-11-09T12:55:03.314000+00:00", "date_updated": "2022-11-09T12:55:23.356000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 10, "forwarded_to": null, "has_recording": false, "id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:23.369000", "date_updated": "2022-11-09T12:55:23.369000", "id": "ev_7ZYR3t4wLvjqvcM1YoacDQ", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-09T12:55:22.036000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413472668} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:03.314000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T12:55:11.703000+00:00", "date_created": "2022-11-09T12:55:03.314000+00:00", "date_updated": "2022-11-09T12:55:22.036000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 10, "forwarded_to": null, "has_recording": false, "id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Microphone (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"82760bc0af34bfefd98ecfeec1879bfe38abf514ce89a8c96166511998b12818\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Speakers (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Speakers (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"}],\"reports\":{\"googTrack_09c44827-dd89-4806-9d06-7c9180c7dbcc\":{\"id\":\"googTrack_09c44827-dd89-4806-9d06-7c9180c7dbcc\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googTrackId\":\"09c44827-dd89-4806-9d06-7c9180c7dbcc\"},\"googLibjingleSession_5180273005143380330\":{\"id\":\"googLibjingleSession_5180273005143380330\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"3\",\"googTransmitBitrate\":\"0\"},\"googCertificate_AB:52:41:CE:9D:21:49:3E:1D:19:E1:18:C5:BA:6E:F7:35:51:D7:D8:74:02:DF:2F:A0:2A:DA:C8:56:17:B1:F6\":{\"id\":\"googCertificate_AB:52:41:CE:9D:21:49:3E:1D:19:E1:18:C5:BA:6E:F7:35:51:D7:D8:74:02:DF:2F:A0:2A:DA:C8:56:17:B1:F6\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googFingerprint\":\"AB:52:41:CE:9D:21:49:3E:1D:19:E1:18:C5:BA:6E:F7:35:51:D7:D8:74:02:DF:2F:A0:2A:DA:C8:56:17:B1:F6\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFjCBvaADAgECAgkA/WQ8JkYqo8UwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIyMTEwODEyNTUwM1oXDTIyMTIwOTEyNTUwM1owETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEtkLHr0xd28+4HB9Mjoih2l+IpyqOfEzNkdtdw9qr9PYhYjW5n21paLVdwXmfe5a0+0PgS8OkXb7WaTi5UCJqnjAKBggqhkjOPQQDAgNIADBFAiBMMy9P8uLzs/prJceHqSDA+94f+qltrcIU2zJnDGj/XgIhAPsNwE0FWWf0hEyIDM6qCmAhi9Tn0/K49ef2w5u71a6R\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_E9:B5:CE:AE:66:5F:28:F3:6D:A0:53:07:38:AE:2D:BA:74:0E:54:19:22:B1:30:3B:F9:3B:7E:5E:EE:25:D4:78\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_AB:52:41:CE:9D:21:49:3E:1D:19:E1:18:C5:BA:6E:F7:35:51:D7:D8:74:02:DF:2F:A0:2A:DA:C8:56:17:B1:F6\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-v1u5geMD\":{\"id\":\"Cand-v1u5geMD\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"50625\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-q+uECo/N\":{\"id\":\"Cand-q+uECo/N\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"ssrc_2188938578_send\":{\"id\":\"ssrc_2188938578_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"audioInputLevel\":\"4\",\"packetsLost\":\"0\",\"googRtt\":\"34\",\"totalSamplesDuration\":\"17.88\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"09c44827-dd89-4806-9d06-7c9180c7dbcc\",\"totalAudioEnergy\":\"0.81361\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"2188938578\",\"googJitterReceived\":\"3\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"857\",\"bytesSent\":\"62409\"},\"googTrack_b893eb76-fcaf-488a-b2fe-b8dfb15ed99a\":{\"id\":\"googTrack_b893eb76-fcaf-488a-b2fe-b8dfb15ed99a\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googTrackId\":\"b893eb76-fcaf-488a-b2fe-b8dfb15ed99a\"},\"googCertificate_E9:B5:CE:AE:66:5F:28:F3:6D:A0:53:07:38:AE:2D:BA:74:0E:54:19:22:B1:30:3B:F9:3B:7E:5E:EE:25:D4:78\":{\"id\":\"googCertificate_E9:B5:CE:AE:66:5F:28:F3:6D:A0:53:07:38:AE:2D:BA:74:0E:54:19:22:B1:30:3B:F9:3B:7E:5E:EE:25:D4:78\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googFingerprint\":\"E9:B5:CE:AE:66:5F:28:F3:6D:A0:53:07:38:AE:2D:BA:74:0E:54:19:22:B1:30:3B:F9:3B:7E:5E:EE:25:D4:78\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBIDCByKADAgECAhRaviG+yLpUsmlEqppVfRNIw86kXTAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA4MTI1NTAzWhcNMjIxMjA5MTI1NTAzWjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATVqi7X/IHYgf8ec5KOijI/jnw8bmglsm+A3wgXhPMC2hVCAG0aTuSnOz7CssscyF2xD+8iKl5S8cVfsIKSVnvdMAoGCCqGSM49BAMCA0cAMEQCIGqIQ+ZbF0OuIHnSjC47apET9pU4Xq/NAmaGFRh5HV52AiAhJ3G7avLQ4Au2WfSieayPDtBkjylIPz3zpAfeBf/CCw==\"},\"Cand-haaImfc/\":{\"id\":\"Cand-haaImfc/\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"50625\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853824767\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:50625\",\"consentRequestsSent\":\"1\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"11\",\"googRemoteAddress\":\"3.122.181.243:16800\",\"googRtt\":\"31\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"87899\",\"responsesReceived\":\"11\",\"remoteCandidateId\":\"Cand-XUaXIKJX\",\"localCandidateId\":\"Cand-haaImfc/\",\"bytesSent\":\"72539\",\"packetsSent\":\"865\"},\"Cand-XUaXIKJX\":{\"id\":\"Cand-XUaXIKJX\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"portNumber\":\"16800\",\"ipAddress\":\"3.122.181.243\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"ssrc_2033449191_recv\":{\"id\":\"ssrc_2033449191_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googDecodingCTN\":\"1725\",\"packetsLost\":\"4\",\"googSecondaryDecodedRate\":\"0.0012207\",\"googDecodingPLC\":\"30\",\"packetsReceived\":\"802\",\"googExpandRate\":\"0.03479\",\"googJitterReceived\":\"0\",\"googDecodingCNG\":\"0\",\"ssrc\":\"2033449191\",\"googPreferredJitterBufferMs\":\"20\",\"googSpeechExpandRate\":\"0.0147095\",\"totalSamplesDuration\":\"17.25\",\"totalAudioEnergy\":\"2.97012\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"98\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"0.997437\",\"googDecodingNormal\":\"1597\",\"googTrackId\":\"b893eb76-fcaf-488a-b2fe-b8dfb15ed99a\",\"audioOutputLevel\":\"3804\",\"googAccelerateRate\":\"0.00134277\",\"bytesReceived\":\"78476\",\"googCurrentDelayMs\":\"82\",\"googDecodingCTSG\":\"0\",\"googCaptureStartNtpTimeMs\":\"3876987304910\",\"googPreemptiveExpandRate\":\"0.0012207\",\"googJitterBufferMs\":\"47\",\"googDecodingMuted\":\"97\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:22.038000", "date_updated": "2022-11-09T12:55:22.038000", "id": "ev_500M7Q2P3VDNQCdEXqQHOn", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv/"}, "object_id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2hEnuIABKlW2UImqVGj3Lx", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472670} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "duration", "is_joinable", "quality_info", "status"], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:03.314000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T12:55:11.703000+00:00", "date_created": "2022-11-09T12:55:03.314000+00:00", "date_updated": "2022-11-09T12:55:22.036000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 10, "forwarded_to": null, "has_recording": false, "id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Microphone (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"82760bc0af34bfefd98ecfeec1879bfe38abf514ce89a8c96166511998b12818\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Speakers (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Speakers (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"218c8e9b1c7018f1356f16b6b9bed22b48cb5862f07049e4be5576baa57adbbf\"}],\"reports\":{\"googTrack_09c44827-dd89-4806-9d06-7c9180c7dbcc\":{\"id\":\"googTrack_09c44827-dd89-4806-9d06-7c9180c7dbcc\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googTrackId\":\"09c44827-dd89-4806-9d06-7c9180c7dbcc\"},\"googLibjingleSession_5180273005143380330\":{\"id\":\"googLibjingleSession_5180273005143380330\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"3\",\"googTransmitBitrate\":\"0\"},\"googCertificate_AB:52:41:CE:9D:21:49:3E:1D:19:E1:18:C5:BA:6E:F7:35:51:D7:D8:74:02:DF:2F:A0:2A:DA:C8:56:17:B1:F6\":{\"id\":\"googCertificate_AB:52:41:CE:9D:21:49:3E:1D:19:E1:18:C5:BA:6E:F7:35:51:D7:D8:74:02:DF:2F:A0:2A:DA:C8:56:17:B1:F6\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googFingerprint\":\"AB:52:41:CE:9D:21:49:3E:1D:19:E1:18:C5:BA:6E:F7:35:51:D7:D8:74:02:DF:2F:A0:2A:DA:C8:56:17:B1:F6\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFjCBvaADAgECAgkA/WQ8JkYqo8UwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIyMTEwODEyNTUwM1oXDTIyMTIwOTEyNTUwM1owETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEtkLHr0xd28+4HB9Mjoih2l+IpyqOfEzNkdtdw9qr9PYhYjW5n21paLVdwXmfe5a0+0PgS8OkXb7WaTi5UCJqnjAKBggqhkjOPQQDAgNIADBFAiBMMy9P8uLzs/prJceHqSDA+94f+qltrcIU2zJnDGj/XgIhAPsNwE0FWWf0hEyIDM6qCmAhi9Tn0/K49ef2w5u71a6R\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_E9:B5:CE:AE:66:5F:28:F3:6D:A0:53:07:38:AE:2D:BA:74:0E:54:19:22:B1:30:3B:F9:3B:7E:5E:EE:25:D4:78\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_AB:52:41:CE:9D:21:49:3E:1D:19:E1:18:C5:BA:6E:F7:35:51:D7:D8:74:02:DF:2F:A0:2A:DA:C8:56:17:B1:F6\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-v1u5geMD\":{\"id\":\"Cand-v1u5geMD\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"50625\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-q+uECo/N\":{\"id\":\"Cand-q+uECo/N\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"ssrc_2188938578_send\":{\"id\":\"ssrc_2188938578_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"audioInputLevel\":\"4\",\"packetsLost\":\"0\",\"googRtt\":\"34\",\"totalSamplesDuration\":\"17.88\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"09c44827-dd89-4806-9d06-7c9180c7dbcc\",\"totalAudioEnergy\":\"0.81361\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"2188938578\",\"googJitterReceived\":\"3\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"857\",\"bytesSent\":\"62409\"},\"googTrack_b893eb76-fcaf-488a-b2fe-b8dfb15ed99a\":{\"id\":\"googTrack_b893eb76-fcaf-488a-b2fe-b8dfb15ed99a\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googTrackId\":\"b893eb76-fcaf-488a-b2fe-b8dfb15ed99a\"},\"googCertificate_E9:B5:CE:AE:66:5F:28:F3:6D:A0:53:07:38:AE:2D:BA:74:0E:54:19:22:B1:30:3B:F9:3B:7E:5E:EE:25:D4:78\":{\"id\":\"googCertificate_E9:B5:CE:AE:66:5F:28:F3:6D:A0:53:07:38:AE:2D:BA:74:0E:54:19:22:B1:30:3B:F9:3B:7E:5E:EE:25:D4:78\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googFingerprint\":\"E9:B5:CE:AE:66:5F:28:F3:6D:A0:53:07:38:AE:2D:BA:74:0E:54:19:22:B1:30:3B:F9:3B:7E:5E:EE:25:D4:78\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBIDCByKADAgECAhRaviG+yLpUsmlEqppVfRNIw86kXTAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA4MTI1NTAzWhcNMjIxMjA5MTI1NTAzWjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATVqi7X/IHYgf8ec5KOijI/jnw8bmglsm+A3wgXhPMC2hVCAG0aTuSnOz7CssscyF2xD+8iKl5S8cVfsIKSVnvdMAoGCCqGSM49BAMCA0cAMEQCIGqIQ+ZbF0OuIHnSjC47apET9pU4Xq/NAmaGFRh5HV52AiAhJ3G7avLQ4Au2WfSieayPDtBkjylIPz3zpAfeBf/CCw==\"},\"Cand-haaImfc/\":{\"id\":\"Cand-haaImfc/\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"50625\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853824767\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:50625\",\"consentRequestsSent\":\"1\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"11\",\"googRemoteAddress\":\"3.122.181.243:16800\",\"googRtt\":\"31\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"87899\",\"responsesReceived\":\"11\",\"remoteCandidateId\":\"Cand-XUaXIKJX\",\"localCandidateId\":\"Cand-haaImfc/\",\"bytesSent\":\"72539\",\"packetsSent\":\"865\"},\"Cand-XUaXIKJX\":{\"id\":\"Cand-XUaXIKJX\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"portNumber\":\"16800\",\"ipAddress\":\"3.122.181.243\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"ssrc_2033449191_recv\":{\"id\":\"ssrc_2033449191_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T12:55:21.168Z\",\"googDecodingCTN\":\"1725\",\"packetsLost\":\"4\",\"googSecondaryDecodedRate\":\"0.0012207\",\"googDecodingPLC\":\"30\",\"packetsReceived\":\"802\",\"googExpandRate\":\"0.03479\",\"googJitterReceived\":\"0\",\"googDecodingCNG\":\"0\",\"ssrc\":\"2033449191\",\"googPreferredJitterBufferMs\":\"20\",\"googSpeechExpandRate\":\"0.0147095\",\"totalSamplesDuration\":\"17.25\",\"totalAudioEnergy\":\"2.97012\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"98\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"0.997437\",\"googDecodingNormal\":\"1597\",\"googTrackId\":\"b893eb76-fcaf-488a-b2fe-b8dfb15ed99a\",\"audioOutputLevel\":\"3804\",\"googAccelerateRate\":\"0.00134277\",\"bytesReceived\":\"78476\",\"googCurrentDelayMs\":\"82\",\"googDecodingCTSG\":\"0\",\"googCaptureStartNtpTimeMs\":\"3876987304910\",\"googPreemptiveExpandRate\":\"0.0012207\",\"googJitterBufferMs\":\"47\",\"googDecodingMuted\":\"97\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:21.763000", "date_updated": "2022-11-09T12:55:22.038000", "id": "ev_4dCU6amW7DoQMXuOEFAn6O", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv/"}, "object_id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:55:11.703000+00:00", "duration": 0, "is_joinable": true, "quality_info": "", "status": "in-progress"}, "request_id": "req_2hEnuIABKlW2UImqVGj3Lx", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472672} +{"stream": "events", "data": {"action": "answered", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:03.314000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T12:55:11.703000+00:00", "date_created": "2022-11-09T12:55:03.314000+00:00", "date_updated": "2022-11-09T12:55:11.703000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "is_forwarded": false, "is_joinable": true, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "in-progress", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:11.706000", "date_updated": "2022-11-09T12:55:11.706000", "id": "ev_48iYqa0do3IG2fG0JxVQGc", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv/"}, "object_id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2KKEBW1jB2wSC82fplTMdt", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472674} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_answered", "date_updated", "disposition", "status"], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:03.314000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T12:55:11.703000+00:00", "date_created": "2022-11-09T12:55:03.314000+00:00", "date_updated": "2022-11-09T12:55:11.703000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "is_forwarded": false, "is_joinable": true, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "in-progress", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:11.706000", "date_updated": "2022-11-09T12:55:11.706000", "id": "ev_3QuGphJcZgnpuFbIYgfWHJ", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv/"}, "object_id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_answered": null, "date_updated": "2022-11-09T12:55:05.533000+00:00", "disposition": null, "status": "created"}, "request_id": "req_2KKEBW1jB2wSC82fplTMdt", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472676} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_joinable", "local_country_iso", "local_phone", "local_phone_formatted"], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:03.314000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T12:55:03.314000+00:00", "date_updated": "2022-11-09T12:55:05.533000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "is_forwarded": false, "is_joinable": true, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:04.133000", "date_updated": "2022-11-09T12:55:05.536000", "id": "ev_6by0SB0UTnyFx9UX3J1VZG", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/callback/conference/acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv/"}, "object_id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:55:03.314000+00:00", "is_joinable": false, "local_country_iso": "", "local_phone": null, "local_phone_formatted": null}, "request_id": "req_2mihBJsrSB5x5ZOiqdtEoE", "user_id": null}, "emitted_at": 1670413472678} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T12:55:03.314000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T12:55:03.314000+00:00", "date_updated": "2022-11-09T12:55:03.314000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T12:55:03.317000", "date_updated": "2022-11-09T12:55:03.317000", "id": "ev_51BRquzkyVr5Zrdkp42NBg", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/call/"}, "object_id": "acti_xzjEYrejim9F9IWz4mrs16ehPCcnUcit43wJTZkwuhv", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6gnVYDb2Ib93OTXynTgtiF", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472680} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "status"], "data": {"_type": "SMS", "activity_at": "2022-11-09T12:54:44.404000+00:00", "attachments": [{"content_type": "image/png", "filename": "Airbyte_logo_75x75.png", "media_id": "media_580CfGelcIvP5BzvIYTlhX", "size": 6132}], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": "3", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:15.456000+00:00", "date_scheduled": null, "date_sent": "2022-11-09T12:54:44.404000+00:00", "date_updated": "2022-11-09T12:54:44.405000+00:00", "direction": "outbound", "error_message": null, "id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T12:54:44.413000", "date_updated": "2022-11-09T12:54:44.413000", "id": "ev_54dCY7IjySyK5k5Rlj2UEg", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-09T12:54:15.456000+00:00", "date_sent": null, "date_updated": "2022-11-09T12:54:43.607000+00:00", "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472681} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-09T12:54:44.404000+00:00", "attachments": [{"content_type": "image/png", "filename": "Airbyte_logo_75x75.png", "media_id": "media_580CfGelcIvP5BzvIYTlhX", "size": 6132}], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": "3", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:15.456000+00:00", "date_scheduled": null, "date_sent": "2022-11-09T12:54:44.404000+00:00", "date_updated": "2022-11-09T12:54:44.405000+00:00", "direction": "outbound", "error_message": null, "id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T12:54:44.413000", "date_updated": "2022-11-09T12:54:44.413000", "id": "ev_292Po84gIdT7Db3dJcaK1Y", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472683} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated"], "data": {"_type": "SMS", "activity_at": "2022-11-09T12:54:15.456000+00:00", "attachments": [{"content_type": "image/png", "filename": "Airbyte_logo_75x75.png", "media_id": "media_580CfGelcIvP5BzvIYTlhX", "size": 6132}], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": "3", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:15.456000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T12:54:43.607000+00:00", "direction": "outbound", "error_message": null, "id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T12:54:43.612000", "date_updated": "2022-11-09T12:54:43.612000", "id": "ev_2DadOynz88dMnyAwwdx26R", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-09T12:54:31.337000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413472685} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status"], "data": {"_type": "SMS", "activity_at": "2022-11-09T12:54:15.456000+00:00", "attachments": [{"content_type": "image/png", "filename": "Airbyte_logo_75x75.png", "media_id": "media_580CfGelcIvP5BzvIYTlhX", "size": 6132}], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:15.456000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T12:54:31.337000+00:00", "direction": "outbound", "error_message": null, "id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T12:54:31.339000", "date_updated": "2022-11-09T12:54:31.339000", "id": "ev_1zHxUwvpw6b4cd7vbjUqeE", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP/"}, "object_id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:54:26.801000+00:00", "status": "draft"}, "request_id": "req_59ahV2CsYVC0e5dxzxAyJi", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472687} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["attachments", "date_updated"], "data": {"_type": "SMS", "activity_at": "2022-11-09T12:54:15.456000+00:00", "attachments": [{"content_type": "image/png", "filename": "Airbyte_logo_75x75.png", "media_id": "media_580CfGelcIvP5BzvIYTlhX", "size": 6132}], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:15.456000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T12:54:26.376000+00:00", "direction": "outbound", "error_message": null, "id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T12:54:26.378000", "date_updated": "2022-11-09T12:54:26.378000", "id": "ev_79KDhgBttSrsYXCparqRrP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP/"}, "object_id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"attachments": [], "date_updated": "2022-11-09T12:54:19.562000+00:00"}, "request_id": "req_1rGhGzx6eUywwW2WqNM7k7", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472689} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-09T12:54:23.168000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:23.168000+00:00", "date_updated": "2022-11-09T12:54:24.782000+00:00", "email_ids": ["acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j"], "id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "latest_normalized_subject": "Test Lead + Airbyte", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T12:54:24.784000", "date_updated": "2022-11-09T12:54:24.784000", "id": "ev_4XR9CACONBMIEGwrAOAOPX", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-09T12:54:03.669000+00:00", "date_created": "2022-11-09T12:54:03.669000+00:00", "date_updated": "2022-11-09T12:54:10.293000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472691} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-09T12:54:23.167000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

I'm Jean with Airbyte. We help companies in the space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n ", "body_text": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:03.668000+00:00", "date_scheduled": null, "date_sent": "2022-11-09T12:54:23.167000+00:00", "date_updated": "2022-11-09T12:54:24.761000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 12:54:23 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166799846322.15922.4962027989641879748@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test Lead + Airbyte", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<166799846322.15922.4962027989641879748@smtpgw.close.com>", "<166799846322.15922.14988047742178474967@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Test Lead + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T12:54:24.764000", "date_updated": "2022-11-09T12:54:24.764000", "id": "ev_3RUzuwYmlcCHikP15D8UQy", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472693} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status"], "data": {"_type": "Email", "activity_at": "2022-11-09T12:54:23.167000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

I'm Jean with Airbyte. We help companies in the space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n ", "body_text": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:03.668000+00:00", "date_scheduled": null, "date_sent": "2022-11-09T12:54:23.167000+00:00", "date_updated": "2022-11-09T12:54:24.761000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 12:54:23 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166799846322.15922.4962027989641879748@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test Lead + Airbyte", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<166799846322.15922.4962027989641879748@smtpgw.close.com>", "<166799846322.15922.14988047742178474967@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Test Lead + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T12:54:24.764000", "date_updated": "2022-11-09T12:54:24.764000", "id": "ev_1iXN8SetY5MR3AMZfE4H3I", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-09T12:54:03.668000+00:00", "date_sent": null, "date_updated": "2022-11-09T12:54:10.275000+00:00", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 12:54:03 -0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test Lead + Airbyte", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "message_ids": [], "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472695} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "template_id", "text"], "data": {"_type": "SMS", "activity_at": "2022-11-09T12:54:15.456000+00:00", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:15.456000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T12:54:19.562000+00:00", "direction": "outbound", "error_message": null, "id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T12:54:19.565000", "date_updated": "2022-11-09T12:54:19.565000", "id": "ev_7E3mEPRPeYVU9yBcOGdgVE", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP/"}, "object_id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:54:15.456000+00:00", "template_id": "", "text": ""}, "request_id": "req_3yoeSBsV3CoeFPcMg98VKe", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472697} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-09T12:54:15.456000+00:00", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:15.456000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T12:54:15.456000+00:00", "direction": "outbound", "error_message": null, "id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T12:54:15.457000", "date_updated": "2022-11-09T12:54:15.457000", "id": "ev_6IF75EiyPp5Vvg1CWWqhon", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_eQ2xwn1RN5sdEXkGpln8Vag8rwPsYfU1qbyeN7dBPsP", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0ZPZJ6U8TxmDUoOofAdeap", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472699} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "email_followup", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n ", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-16", "date_created": "2022-11-09T12:54:10.330000+00:00", "date_updated": "2022-11-09T12:54:10.330000+00:00", "email_id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "id": "noti_JU7vkNkhpywznaGu5P0WuBWxsMXtzZmkOSXaCxbxTsN", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Test Lead + Airbyte", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-09T12:54:10.332000", "date_updated": "2022-11-09T12:54:10.332000", "id": "ev_635tCJwHRTEwtWPkBomJ1J", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j/"}, "object_id": "noti_JU7vkNkhpywznaGu5P0WuBWxsMXtzZmkOSXaCxbxTsN", "object_type": "task.email_followup", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_3APUlFieEfppQoGMY12jSH", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472701} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["body_html", "date_updated", "envelope", "status"], "data": {"_type": "Email", "activity_at": "2022-11-09T12:54:03.668000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

I'm Jean with Airbyte. We help companies in the space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n ", "body_text": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:03.668000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T12:54:10.275000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 12:54:03 -0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test Lead + Airbyte", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Test Lead + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T12:54:05.962000", "date_updated": "2022-11-09T12:54:10.277000", "id": "ev_3Cn5Wn6kWLlYOQ2cBU3KRQ", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j/"}, "object_id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"body_html": "Hi Iryna,

I'm Jean with Airbyte. We help companies in the space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "date_updated": "2022-11-09T12:54:03.679000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test Lead + Airbyte", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "status": "draft"}, "request_id": "req_3APUlFieEfppQoGMY12jSH", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472702} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-09T12:54:03.668000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

I'm Jean with Airbyte. We help companies in the space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n ", "body_text": "Hi Iryna, \n \nI'm Jean with Airbyte. We help companies in the space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Test Lead\nand show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:03.668000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T12:54:03.679000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test Lead + Airbyte", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "Test Lead + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T12:54:03.680000", "date_updated": "2022-11-09T12:54:03.680000", "id": "ev_49qvLKfF0S61R72bLqwk5T", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_3366fcXVF89b7FiS0HTKTS", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472704} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-09T12:54:03.669000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:54:03.669000+00:00", "date_updated": "2022-11-09T12:54:03.674000+00:00", "email_ids": ["acti_a3AsG3P38a8yDx0XgI8ZNZR4Ko8XRUBybauASuT8C2j"], "id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "latest_normalized_subject": "Test Lead + Airbyte", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T12:54:03.676000", "date_updated": "2022-11-09T12:54:03.676000", "id": "ev_02EQZyfqbC64q4160GddEz", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_fFBPZHGPKt60kZG2SzI5ws5OMbysXqCAGJuGlKucDy5", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_3366fcXVF89b7FiS0HTKTS", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472708} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-23T09:00:00+00:00", "date_created": "2022-11-09T12:37:29.827000+00:00", "date_updated": "2022-11-09T12:44:26.200000+00:00", "due_date": "2022-11-23T09:00:00+00:00", "id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "is_complete": true, "is_dateless": false, "is_new": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_tEFyhPH4AKZ3YHaqqFEdm9Lot1oEI4yEyKzEf0ncbGE", "object_type": "taskcompleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-09T12:44:26.201000", "date_updated": "2022-11-09T12:44:26.201000", "id": "ev_6D9KeuOqJ79WsoeNklmsQ6", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY/"}, "object_id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6xSETTx7jB2crvIPxa60IR", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472711} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_complete", "is_new", "object_id", "object_type", "view"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-23T09:00:00+00:00", "date_created": "2022-11-09T12:37:29.827000+00:00", "date_updated": "2022-11-09T12:44:26.200000+00:00", "due_date": "2022-11-23T09:00:00+00:00", "id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "is_complete": true, "is_dateless": false, "is_new": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_tEFyhPH4AKZ3YHaqqFEdm9Lot1oEI4yEyKzEf0ncbGE", "object_type": "taskcompleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-09T12:44:26.201000", "date_updated": "2022-11-09T12:44:26.201000", "id": "ev_5iF06n4LAYPbziI5p1G3Hu", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY/"}, "object_id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:37:29.827000+00:00", "is_complete": false, "is_new": true, "object_id": null, "object_type": null, "view": "future"}, "request_id": "req_6xSETTx7jB2crvIPxa60IR", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472714} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "TaskCompleted", "activity_at": "2022-11-09T12:44:26.185000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T12:44:26.185000+00:00", "date_updated": "2022-11-09T12:44:26.185000+00:00", "id": "acti_tEFyhPH4AKZ3YHaqqFEdm9Lot1oEI4yEyKzEf0ncbGE", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "task_assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "task_assigned_to_name": "Jean Lafleur", "task_id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "task_text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T12:44:26.187000", "date_updated": "2022-11-09T12:44:26.187000", "id": "ev_22Vpdm00otJlcAmDNB2XUi", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY/"}, "object_id": "acti_tEFyhPH4AKZ3YHaqqFEdm9Lot1oEI4yEyKzEf0ncbGE", "object_type": "activity.task_completed", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6xSETTx7jB2crvIPxa60IR", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472717} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting 2\nSaturday Nov 12, 2022 \u22c5 8pm \u2013 9pm\nEastern European Time - Kyiv\n\n\n\nOrganizer\niryna.grankova@airbyte.io\niryna.grankova@airbyte.io\n\n", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T12:42:01+00:00", "date_created": "2022-11-09T12:42:01+00:00", "date_updated": "2022-11-09T12:42:06.949000+00:00", "emails": ["acti_5Y0g1Ty898ORU1yMffesNiTs3I4RvFdWWrTErpmJmYb"], "id": "noti_usYjV72fgEzHlmX8ZIkBFrFcrnI6ilJ5iZUI1SmNR0i", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_ZtrsNQMEmg7RwStpMzckQc22tjvbESmIdfdBkChH7s5", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-09T12:42:06.954000", "date_updated": "2022-11-09T12:42:06.954000", "id": "ev_1v2Q6bfAMhwQFfovnxlpSq", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "noti_usYjV72fgEzHlmX8ZIkBFrFcrnI6ilJ5iZUI1SmNR0i", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413472720} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-09T12:42:01+00:00", "attachments": [{"content_id": null, "content_type": "text/calendar", "filename": "file.ics", "size": 631}, {"content_id": null, "content_type": "application/ics", "filename": "invite.ics", "size": 631}], "bcc": [], "body_html": "\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n Test meeting 2
 
irina.grankova@gmail.com has accepted this invitation.
 

When

Saturday Nov 12, 2022 \u22c5 8pm \u2013 9pm (Eastern European Time - Kyiv)

Invitation from Google Calendar

You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to Calendar settings, select this calendar, and change \"Other notifications\".

Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. Learn more

", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting 2\nSaturday Nov 12, 2022 \u22c5 8pm \u2013 9pm\nEastern European Time - Kyiv\n\n\n\nOrganizer\niryna.grankova@airbyte.io\niryna.grankova@airbyte.io\n\n", "body_text": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting 2\nSaturday Nov 12, 2022 \u22c5 8pm \u2013 9pm\nEastern European Time - Kyiv\n\n\n\nOrganizer\niryna.grankova@airbyte.io\niryna.grankova@airbyte.io\n\nGuests\niryna.grankova@airbyte.io - organizer\nirina.grankova@gmail.com\nView all guest info \nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MWRlcDU1cDZtamY0MGxnYnJ2OXI5ajlocG8gaXJ5bmEuZ3JhbmtvdmFAYWlyYnl0ZS5pbw&tok=MjUjaXJ5bmEuZ3JhbmtvdmFAYWlyYnl0ZS5pbzE2Y2ZiMDdkMGQzOTk4OGFmYzI1NGVmYTE3ODEzYzBlNGQ0M2NhMDE&ctz=Europe%2FKiev&hl=en&es=1\n\n~~//~~\nInvitation from Google Calendar: https://calendar.google.com/calendar/\n\nYou are receiving this email because you are an attendee on the event. To \nstop receiving future updates for this event, decline this event.\n\nForwarding this invitation could allow any recipient to send a response to \nthe organizer, be added to the guest list, invite others regardless of \ntheir own invitation status, or modify your RSVP.\n\nLearn more https://support.google.com/calendar/answer/37135#forwarding\n", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date_created": "2022-11-09T12:42:01+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T12:42:06.830000+00:00", "direction": "incoming", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 12:42:01 +0000", "from": [{"email": "irina.grankova@gmail.com", "name": ""}], "in_reply_to": null, "is_autoreply": true, "message_id": "<000000000000a8d33605ed08fb3c@google.com>", "reply_to": [{"email": "irina.grankova@gmail.com", "name": ""}], "sender": [{"email": "calendar-notification@google.com", "name": "Google Calendar"}], "subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_5Y0g1Ty898ORU1yMffesNiTs3I4RvFdWWrTErpmJmYb", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<000000000000a8d33605ed08fb3c@google.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "irina.grankova@gmail.com", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "template_id": null, "template_name": null, "thread_id": "acti_ZtrsNQMEmg7RwStpMzckQc22tjvbESmIdfdBkChH7s5", "to": ["iryna.grankova@airbyte.io"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T12:42:06.832000", "date_updated": "2022-11-09T12:42:06.832000", "id": "ev_6cFGIix0lVKxq5IPibmIoT", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_5Y0g1Ty898ORU1yMffesNiTs3I4RvFdWWrTErpmJmYb", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413472723} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-09T12:42:01.001000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-09T12:42:01.001000+00:00", "date_updated": "2022-11-09T12:42:06.826000+00:00", "email_ids": ["acti_5Y0g1Ty898ORU1yMffesNiTs3I4RvFdWWrTErpmJmYb"], "id": "acti_ZtrsNQMEmg7RwStpMzckQc22tjvbESmIdfdBkChH7s5", "latest_normalized_subject": "Accepted: Test meeting 2 @ Sat Nov 12, 2022 8pm - 9pm (EET) (iryna.grankova@airbyte.io)", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "irina.grankova@gmail.com", "name": ""}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T12:42:06.828000", "date_updated": "2022-11-09T12:42:06.828000", "id": "ev_1qjIIKw20QD7fC91lhyAzq", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_ZtrsNQMEmg7RwStpMzckQc22tjvbESmIdfdBkChH7s5", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413472726} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Meeting", "activity_at": "2022-11-12T18:00:00+00:00", "attendees": [{"contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "email": "irina.grankova@gmail.com", "is_organizer": false, "name": null, "status": "noreply", "user_id": null}, {"contact_id": null, "email": "iryna.grankova@airbyte.io", "is_organizer": true, "name": null, "status": "yes", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "calendar_event_link": null, "calendar_event_uids": ["1dep55p6mjf40lgbrv9r9j9hpo"], "connected_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-12T18:00:00+00:00", "date_updated": "2022-11-09T12:41:54.440000+00:00", "duration": 3600, "ends_at": "2022-11-12T19:00:00+00:00", "id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "integrations": [], "is_recurring": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "location": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "calendar", "starts_at": "2022-11-12T18:00:00+00:00", "status": "upcoming", "title": "Test meeting 2", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T12:41:54.442000", "date_updated": "2022-11-09T12:41:54.442000", "id": "ev_2GTUNPTJi2pMJl136RxH2X", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "object_type": "activity.meeting", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413472729} +{"stream": "events", "data": {"action": "scheduled", "api_key_id": null, "changed_fields": [], "data": {"_type": "Meeting", "activity_at": "2022-11-12T18:00:00+00:00", "attendees": [{"contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "email": "irina.grankova@gmail.com", "is_organizer": false, "name": null, "status": "noreply", "user_id": null}, {"contact_id": null, "email": "iryna.grankova@airbyte.io", "is_organizer": true, "name": null, "status": "yes", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "calendar_event_link": null, "calendar_event_uids": ["1dep55p6mjf40lgbrv9r9j9hpo"], "connected_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-12T18:00:00+00:00", "date_updated": "2022-11-09T12:41:54.440000+00:00", "duration": 3600, "ends_at": "2022-11-12T19:00:00+00:00", "id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "integrations": [], "is_recurring": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "location": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "calendar", "starts_at": "2022-11-12T18:00:00+00:00", "status": "upcoming", "title": "Test meeting 2", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T12:41:54.442000", "date_updated": "2022-11-09T12:41:54.442000", "id": "ev_0XOHgyef1puaWdftkVTtl3", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_AlRbqNk15jdt7Eq2phHXuV49qSpkLBB7af3mwvJkk1z", "object_type": "activity.meeting", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413472733} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-23T09:00:00+00:00", "date_created": "2022-11-09T12:37:29.827000+00:00", "date_updated": "2022-11-09T12:37:29.827000+00:00", "due_date": "2022-11-23T09:00:00+00:00", "id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-09T12:37:29.829000", "date_updated": "2022-11-09T12:37:29.829000", "id": "ev_5WDUj9fZi9UZXv8gAuoQRI", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_KAzmd4tqcQ1dYypqOjeZqmpKVlFZf3LWJfxCSoX29GY", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6abk2H74NhGmk28AWUH8Et", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472736} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_complete", "is_new", "view"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLi", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T11:30:58+00:00", "date_created": "2022-11-09T11:30:58+00:00", "date_updated": "2022-11-09T12:36:43.842000+00:00", "emails": [], "id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "is_complete": true, "is_new": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-09T12:36:43.844000", "date_updated": "2022-11-09T12:36:43.844000", "id": "ev_4NUmEUjQoBLf6Ikp9qalmc", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:36:40.320000+00:00", "is_complete": false, "is_new": true, "view": "inbox"}, "request_id": "req_1o1Wuozl8wV0BibKWLjGsf", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472738} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_created", "date_updated"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLi", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T11:30:58+00:00", "date_created": "2022-11-09T11:30:58+00:00", "date_updated": "2022-11-09T12:36:40.320000+00:00", "emails": [], "id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": null}, "date_created": "2022-11-09T12:36:40.321000", "date_updated": "2022-11-09T12:36:40.321000", "id": "ev_0FJtik5MckIrIhUQWf5lPR", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-09T11:30:58.001000+00:00", "date_created": "2022-11-09T11:30:58.001000+00:00", "date_updated": "2022-11-09T12:36:31.797000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413472740} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_complete", "is_new", "updated_by", "updated_by_name", "view"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLi", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T11:30:58.001000+00:00", "date_created": "2022-11-09T11:30:58.001000+00:00", "date_updated": "2022-11-09T12:36:31.797000+00:00", "emails": [], "id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "date_created": "2022-11-09T12:36:31.799000", "date_updated": "2022-11-09T12:36:31.799000", "id": "ev_54zlkTymLxqi1J0S9J4p7p", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T11:31:29.693000+00:00", "is_complete": true, "is_new": false, "updated_by": null, "updated_by_name": null, "view": "archive"}, "request_id": "req_5CWVB9oWISJuAP9KVByswT", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472741} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_created", "date_updated", "emails"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09", "date_created": "2022-11-09T12:32:37+00:00", "date_updated": "2022-11-09T12:36:09.521000+00:00", "emails": ["acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa"], "id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": null}, "date_created": "2022-11-09T12:36:09.526000", "date_updated": "2022-11-09T12:36:09.526000", "id": "ev_7dRtyI5VjcdtYwFy9Zy0SV", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-23", "date_created": "2022-11-09T12:32:37.001000+00:00", "date_updated": "2022-11-09T12:36:08.563000+00:00", "emails": []}, "request_id": null, "user_id": null}, "emitted_at": 1670413472743} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_updated", "view"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-23", "date_created": "2022-11-09T12:32:37.001000+00:00", "date_updated": "2022-11-09T12:36:08.563000+00:00", "emails": [], "id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-09T12:36:08.564000", "date_updated": "2022-11-09T12:36:08.564000", "id": "ev_1b0vIHmAqssQ86ATdHw3oM", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-09T12:32:37.001000+00:00", "date_updated": "2022-11-09T12:35:50.841000+00:00", "view": "inbox"}, "request_id": "req_0uieDRW3t9soNskz7FXPl2", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472745} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_complete", "is_new", "updated_by", "updated_by_name", "view"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T12:32:37.001000+00:00", "date_created": "2022-11-09T12:32:37.001000+00:00", "date_updated": "2022-11-09T12:35:50.841000+00:00", "emails": [], "id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "date_created": "2022-11-09T12:35:50.843000", "date_updated": "2022-11-09T12:35:50.843000", "id": "ev_12fEtwAoVrhx1nwPXjgfLP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T12:33:05.618000+00:00", "is_complete": true, "is_new": false, "updated_by": null, "updated_by_name": null, "view": "archive"}, "request_id": "req_0h8vzXZQQvcmH4C84zYM3U", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472747} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_created", "date_updated", "emails", "is_complete", "is_new"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T12:32:37.001000+00:00", "date_created": "2022-11-09T12:32:37.001000+00:00", "date_updated": "2022-11-09T12:33:05.618000+00:00", "emails": [], "id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "is_complete": true, "is_new": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-09T12:33:05.620000", "date_updated": "2022-11-09T12:33:05.620000", "id": "ev_3Ox9cSgzELGVXBVw4vbbis", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-09T12:32:37+00:00", "date_created": "2022-11-09T12:32:37+00:00", "date_updated": "2022-11-09T12:32:49.637000+00:00", "emails": ["acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa"], "is_complete": false, "is_new": true}, "request_id": null, "user_id": null}, "emitted_at": 1670413472749} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T12:32:37+00:00", "date_created": "2022-11-09T12:32:37+00:00", "date_updated": "2022-11-09T12:32:49.637000+00:00", "emails": ["acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa"], "id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-09T12:32:49.644000", "date_updated": "2022-11-09T12:32:49.644000", "id": "ev_2nQD1iLhOZ0X6YBGNvKLNF", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "noti_u4egpo7XbQjk9MNdMc9P1nYRlMTIXJhFeH6JdRxq7L4", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413472751} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-09T12:32:37+00:00", "attachments": [{"content_id": null, "content_type": "text/calendar", "filename": "file.ics", "size": 1206}, {"content_id": null, "content_type": "application/ics", "filename": "invite.ics", "size": 1206}], "bcc": [], "body_html": "\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n Test meeting
 
irina.grankova@gmail.com has accepted this invitation.
 

When

Friday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm (Eastern European Time - Kyiv)

Invitation from Google Calendar

You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to Calendar settings, select this calendar, and change \"Other notifications\".

Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. Learn more

\n", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6", "body_text": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nFriday Nov 11, 2022 \u22c5 5:15pm \u2013 6:15pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/TpmBCG6rEQC4MxPVFKSfql?domain=meet.google.com\n\n\n\t\nJoin by phone\n(GB) +44 20 3937 0463\nPIN: 318167082\n\nMore phone numbers\nhttps://protect-us.mimecast.com/s/bAkfCJ6xR7CwYG27tGX2ya?domain=tel.meet\n\n\nOrganizer\niryna.grankova@globallogic.com\niryna.grankova@globallogic.com\n\nGuests\niryna.grankova@globallogic.com - organizer\nirina.grankova@gmail.com\nView all guest info \nhttps://protect-us.mimecast.com/s/QMWsCKryR5iWngYjC3LjFf?domain=calendar.google.com\n\n~~//~~\nInvitation from Google Calendar: https://protect-us.mimecast.com/s/nKJWCL9zR5i91xgJfmFOtP?domain=calendar.google.com\n\nYou are receiving this email because you are an attendee on the event. To \nstop receiving future updates for this event, decline this event.\n\nForwarding this invitation could allow any recipient to send a response to \nthe organizer, be added to the guest list, invite others regardless of \ntheir own invitation status, or modify your RSVP.\n\nLearn more https://protect-us.mimecast.com/s/am2dCM8A65U3ZKLQfQyCij?domain=support.google.com\n", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date_created": "2022-11-09T12:32:37+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T12:32:49.521000+00:00", "direction": "incoming", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 12:32:37 +0000", "from": [{"email": "irina.grankova@gmail.com", "name": ""}], "in_reply_to": null, "is_autoreply": true, "message_id": "<0000000000000d111305ed08dada@google.com>", "reply_to": [{"email": "irina.grankova@gmail.com", "name": ""}], "sender": [{"email": "calendar-notification@google.com", "name": "Google Calendar"}], "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<0000000000000d111305ed08dada@google.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "irina.grankova@gmail.com", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "template_id": null, "template_name": null, "thread_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "to": ["iryna.grankova@globallogic.com"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T12:32:49.522000", "date_updated": "2022-11-09T12:32:49.522000", "id": "ev_5ZgMbqGdM2rWDjl9tZpkhU", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413472753} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-09T12:32:37.001000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-09T12:32:37.001000+00:00", "date_updated": "2022-11-09T12:32:49.517000+00:00", "email_ids": ["acti_frY4M6FyB8u7aHWUhSAKCaL92i02ID0YZQdnQlBrWLa"], "id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "latest_normalized_subject": "Accepted: Test meeting @ Fri Nov 11, 2022 5:15pm - 6:15pm (EET) (iryna.grankova@globallogic.com)", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "irina.grankova@gmail.com", "name": ""}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T12:32:49.519000", "date_updated": "2022-11-09T12:32:49.519000", "id": "ev_0afL14ELZ5Gac898vEHOZs", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_L68aSWHKLy0BQmpbi7UHKVrrB2B4meTPGrpJgR8rMIv", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413472755} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_created", "date_updated", "emails", "is_complete", "is_new"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLi", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T11:30:58.001000+00:00", "date_created": "2022-11-09T11:30:58.001000+00:00", "date_updated": "2022-11-09T11:31:29.693000+00:00", "emails": [], "id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "is_complete": true, "is_new": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-09T11:31:29.695000", "date_updated": "2022-11-09T11:31:29.695000", "id": "ev_4KnYLKOJBfvPCCDRbhcEww", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-09T11:30:58+00:00", "date_created": "2022-11-09T11:30:58+00:00", "date_updated": "2022-11-09T11:31:12.064000+00:00", "emails": ["acti_90yRG8Hy4yCw7kRWEfJTRmf6QjmPseSWCxCLnwcSJfQ"], "is_complete": false, "is_new": true}, "request_id": null, "user_id": null}, "emitted_at": 1670413472757} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "emails", "is_complete", "is_new", "updated_by", "updated_by_name", "view"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "Test\n\n\n", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T11:28:52+00:00", "date_created": "2022-11-09T11:28:52+00:00", "date_updated": "2022-11-09T11:31:12.492000+00:00", "emails": [], "id": "noti_riWe7WgmaFmLFb5coiG1xDTXA0gj1YIQ0NyMpBpwmj1", "is_complete": true, "is_new": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_p8SyYmT6CzaYHH6UQksWRLewcU6AjwNl1JbgPbp9Uai", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Test", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-09T11:31:12.494000", "date_updated": "2022-11-09T11:31:12.494000", "id": "ev_3tOtuSbMsX19dyCliD8POI", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/noti_riWe7WgmaFmLFb5coiG1xDTXA0gj1YIQ0NyMpBpwmj1/"}, "object_id": "noti_riWe7WgmaFmLFb5coiG1xDTXA0gj1YIQ0NyMpBpwmj1", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T11:29:03.477000+00:00", "emails": ["acti_EI3xv4nNGN7MNydTjlXHp5UmxEPKJhbpUtKf5lxg6Uq"], "is_complete": false, "is_new": true, "updated_by": null, "updated_by_name": null, "view": "inbox"}, "request_id": "req_6yL5E9ucm2MkKTpGB2EVxh", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413472759} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLi", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T11:30:58+00:00", "date_created": "2022-11-09T11:30:58+00:00", "date_updated": "2022-11-09T11:31:12.064000+00:00", "emails": ["acti_90yRG8Hy4yCw7kRWEfJTRmf6QjmPseSWCxCLnwcSJfQ"], "id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-09T11:31:12.070000", "date_updated": "2022-11-09T11:31:12.070000", "id": "ev_0foCnqiNQpnkw2CxSW2UL4", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "noti_XTCois7JGpR9LHGKnKi2dh6O5KmlMeyraJlEcPNnNOB", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413473478} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-09T11:30:58+00:00", "attachments": [{"content_id": null, "content_type": "text/calendar", "filename": "file.ics", "size": 1206}, {"content_id": null, "content_type": "application/ics", "filename": "invite.ics", "size": 1206}], "bcc": [], "body_html": "\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n Test meeting
 
irina.grankova@gmail.com has accepted this invitation.
 

When

Wednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm (Eastern European Time - Kyiv)

Invitation from Google Calendar

You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to Calendar settings, select this calendar, and change \"Other notifications\".

Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. Learn more

\n", "body_preview": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLi", "body_text": "irina.grankova@gmail.com has accepted this invitation.\n\nTest meeting\nWednesday Nov 9, 2022 \u22c5 2pm \u2013 3pm\nEastern European Time - Kyiv\n\nJoin with Google Meet\nhttps://protect-us.mimecast.com/s/8tXrC9rNmLiqB6yJSowlDc?domain=meet.google.com\n\n\n\t\nJoin by phone\n(GB) +44 20 3937 0463\nPIN: 318167082\n\nMore phone numbers\nhttps://protect-us.mimecast.com/s/mRXXC0R7BXCB39OnhDVap6?domain=tel.meet\n\n\nOrganizer\niryna.grankova@globallogic.com\niryna.grankova@globallogic.com\n\nGuests\niryna.grankova@globallogic.com - organizer\nirina.grankova@gmail.com\nView all guest info \nhttps://protect-us.mimecast.com/s/bSDoCgJEPQHy2jXvC2d9qf?domain=calendar.google.com\n\n~~//~~\nInvitation from Google Calendar: https://protect-us.mimecast.com/s/HBvSCjRKPOCmqwLzC7efZi?domain=calendar.google.com\n\nYou are receiving this email because you are an attendee on the event. To \nstop receiving future updates for this event, decline this event.\n\nForwarding this invitation could allow any recipient to send a response to \nthe organizer, be added to the guest list, invite others regardless of \ntheir own invitation status, or modify your RSVP.\n\nLearn more https://protect-us.mimecast.com/s/yispCkRLPOCBQRVDhJsq8W?domain=support.google.com\n", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date_created": "2022-11-09T11:30:58+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T11:31:11.939000+00:00", "direction": "incoming", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 11:30:58 +0000", "from": [{"email": "irina.grankova@gmail.com", "name": ""}], "in_reply_to": null, "is_autoreply": true, "message_id": "<0000000000009b99c605ed07fdaf@google.com>", "reply_to": [{"email": "irina.grankova@gmail.com", "name": ""}], "sender": [{"email": "calendar-notification@google.com", "name": "Google Calendar"}], "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_90yRG8Hy4yCw7kRWEfJTRmf6QjmPseSWCxCLnwcSJfQ", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<0000000000009b99c605ed07fdaf@google.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "irina.grankova@gmail.com", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "template_id": null, "template_name": null, "thread_id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "to": ["iryna.grankova@globallogic.com"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:31:11.941000", "date_updated": "2022-11-09T11:31:11.941000", "id": "ev_5CQ7gLoj7qOpLAuWEBoBEe", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_90yRG8Hy4yCw7kRWEfJTRmf6QjmPseSWCxCLnwcSJfQ", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413473480} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-09T11:30:58.001000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-09T11:30:58.001000+00:00", "date_updated": "2022-11-09T11:31:11.934000+00:00", "email_ids": ["acti_90yRG8Hy4yCw7kRWEfJTRmf6QjmPseSWCxCLnwcSJfQ"], "id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "latest_normalized_subject": "Accepted: Test meeting @ Wed Nov 9, 2022 2pm - 3pm (EET) (iryna.grankova@globallogic.com)", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "irina.grankova@gmail.com", "name": ""}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T11:31:11.936000", "date_updated": "2022-11-09T11:31:11.936000", "id": "ev_3r7UaC3WcAL1KR47sejIKs", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_O0aBSkKyCb6DER1hfih6a2bbOzqTWdX0H8Q4uEdbLnb", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413473483} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "Test\n\n\n", "cleared_followups": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date": "2022-11-09T11:28:52+00:00", "date_created": "2022-11-09T11:28:52+00:00", "date_updated": "2022-11-09T11:29:03.477000+00:00", "emails": ["acti_EI3xv4nNGN7MNydTjlXHp5UmxEPKJhbpUtKf5lxg6Uq"], "id": "noti_riWe7WgmaFmLFb5coiG1xDTXA0gj1YIQ0NyMpBpwmj1", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "Test Lead", "object_id": "acti_p8SyYmT6CzaYHH6UQksWRLewcU6AjwNl1JbgPbp9Uai", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Test", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-09T11:29:03.484000", "date_updated": "2022-11-09T11:29:03.484000", "id": "ev_4bdGFCFaDRsA7QQ5yyNKuN", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "noti_riWe7WgmaFmLFb5coiG1xDTXA0gj1YIQ0NyMpBpwmj1", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413473484} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-09T11:28:52+00:00", "attachments": [], "bcc": [], "body_html": "Test
\n
\n
\n", "body_preview": "Test\n\n\n", "body_text": "Test\n\n\n", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date_created": "2022-11-09T11:28:52+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T11:29:03.355000+00:00", "direction": "incoming", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Wed, 9 Nov 2022 13:28:52 +0200", "from": [{"email": "irina.grankova@gmail.com", "name": "Irina Grankova"}], "in_reply_to": null, "is_autoreply": false, "message_id": "", "reply_to": [], "sender": [{"email": "globallogic@airbyte.io", "name": ""}], "subject": "Test", "to": [{"email": "integration-test@airbyte.io", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_EI3xv4nNGN7MNydTjlXHp5UmxEPKJhbpUtKf5lxg6Uq", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": [""], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Irina Grankova ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Test", "template_id": null, "template_name": null, "thread_id": "acti_p8SyYmT6CzaYHH6UQksWRLewcU6AjwNl1JbgPbp9Uai", "to": ["integration-test@airbyte.io"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:29:03.357000", "date_updated": "2022-11-09T11:29:03.357000", "id": "ev_3NH7ym73W0LL84V0xe4vsM", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_EI3xv4nNGN7MNydTjlXHp5UmxEPKJhbpUtKf5lxg6Uq", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413473486} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-09T11:28:52.001000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-09T11:28:52.001000+00:00", "date_updated": "2022-11-09T11:29:03.351000+00:00", "email_ids": ["acti_EI3xv4nNGN7MNydTjlXHp5UmxEPKJhbpUtKf5lxg6Uq"], "id": "acti_p8SyYmT6CzaYHH6UQksWRLewcU6AjwNl1JbgPbp9Uai", "latest_normalized_subject": "Test", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "irina.grankova@gmail.com", "name": "Irina Grankova"}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T11:29:03.353000", "date_updated": "2022-11-09T11:29:03.353000", "id": "ev_1M1SRkTLRFFIcFl80zgIkh", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_p8SyYmT6CzaYHH6UQksWRLewcU6AjwNl1JbgPbp9Uai", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413473488} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-09T11:25:32.264000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM", "body_preview": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:25:17.425000+00:00", "date_scheduled": null, "date_sent": "2022-11-09T11:25:32.264000+00:00", "date_updated": "2022-11-09T11:29:01.481000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 11:25:32 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166799313228.17776.4777225093537029355@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<166799313228.17776.4777225093537029355@smtpgw.close.com>", "<166799313228.17776.3152755854733402602@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "104.28.131.166", "opened_at": "2022-11-09T11:29:01.480000+00:00", "opened_by": "irina.grankova@gmail.com", "user_agent": "Mozilla/5.0"}], "opens_summary": "Opened by irina.grankova@gmail.com (2022-11-09)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:29:01.483000", "date_updated": "2022-11-09T11:29:01.483000", "id": "ev_2CJvagD7mcrMXJV6aJoGly", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "GET", "request_path": "/t/F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs/7LkEiQUps7.png"}, "object_id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T11:25:33.601000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_4PYgKKXXDY5ZZ2AKU9FIci", "user_id": null}, "emitted_at": 1670413473490} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status_id", "status_label"], "data": {"addresses": [], "contact_ids": ["cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:54:42.377000+00:00", "date_updated": "2022-11-09T11:25:53.720000+00:00", "description": "", "display_name": "Test Lead", "id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "Test Lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "status_label": "Interested", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-09T11:25:53.721000", "date_updated": "2022-11-09T11:25:53.721000", "id": "ev_0E3m3TQqgKlH71u0pi4mrw", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j/"}, "object_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T11:25:33.637000+00:00", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential"}, "request_id": "req_2YfLYpNHE9IDPebt1OZuUQ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473492} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "LeadStatusChange", "activity_at": "2022-11-09T11:25:53.697000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:25:53.697000+00:00", "date_updated": "2022-11-09T11:25:53.697000+00:00", "id": "acti_8ygqbcNLU7NG3a6koeZKmfOGmaigvifz4IaeQpMbAcc", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "new_status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "new_status_label": "Interested", "old_status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "old_status_label": "Potential", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:25:53.700000", "date_updated": "2022-11-09T11:25:53.700000", "id": "ev_5urKESwwSbTbzsY9VMTfQJ", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j/"}, "object_id": "acti_8ygqbcNLU7NG3a6koeZKmfOGmaigvifz4IaeQpMbAcc", "object_type": "activity.lead_status_change", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2YfLYpNHE9IDPebt1OZuUQ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473494} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-09T11:25:32.265000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:25:32.265000+00:00", "date_updated": "2022-11-09T11:25:33.620000+00:00", "email_ids": ["acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs"], "id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T11:25:33.622000", "date_updated": "2022-11-09T11:25:33.622000", "id": "ev_6Gr17WAL1oRw4yhcvtvJZ4", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-09T11:25:17.426000+00:00", "date_created": "2022-11-09T11:25:17.426000+00:00", "date_updated": "2022-11-09T11:25:19.551000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473496} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-09T11:25:32.264000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM", "body_preview": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:25:17.425000+00:00", "date_scheduled": null, "date_sent": "2022-11-09T11:25:32.264000+00:00", "date_updated": "2022-11-09T11:25:33.601000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 11:25:32 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166799313228.17776.4777225093537029355@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<166799313228.17776.4777225093537029355@smtpgw.close.com>", "<166799313228.17776.3152755854733402602@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:25:33.603000", "date_updated": "2022-11-09T11:25:33.603000", "id": "ev_4nssQCeScQosUR5j8pCWNS", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473498} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status"], "data": {"_type": "Email", "activity_at": "2022-11-09T11:25:32.264000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM", "body_preview": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:25:17.425000+00:00", "date_scheduled": null, "date_sent": "2022-11-09T11:25:32.264000+00:00", "date_updated": "2022-11-09T11:25:33.601000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 11:25:32 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166799313228.17776.4777225093537029355@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<166799313228.17776.4777225093537029355@smtpgw.close.com>", "<166799313228.17776.3152755854733402602@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:25:33.603000", "date_updated": "2022-11-09T11:25:33.603000", "id": "ev_1nXaf1agwwYgmlkfXSw3CN", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-09T11:25:17.425000+00:00", "date_sent": null, "date_updated": "2022-11-09T11:25:19.530000+00:00", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 11:25:17 -0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "message_ids": [], "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473500} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["body_html", "date_updated", "envelope", "status"], "data": {"_type": "Email", "activity_at": "2022-11-09T11:25:17.425000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM", "body_preview": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:25:17.425000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T11:25:19.530000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Wed, 09 Nov 2022 11:25:17 -0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:25:19.532000", "date_updated": "2022-11-09T11:25:19.532000", "id": "ev_1tVX4tSZHujXCgy5VzyNZW", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs/"}, "object_id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"body_html": "Hi Iryna,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "date_updated": "2022-11-09T11:25:17.439000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "status": "draft"}, "request_id": "req_5K524FQ1x8WkBqYMOkvPXW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473502} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-09T11:25:17.425000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Iryna,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Iryna, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:25:17.425000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T11:25:17.439000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "irina.grankova@gmail.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "to": ["irina.grankova@gmail.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:25:17.440000", "date_updated": "2022-11-09T11:25:17.440000", "id": "ev_40tkrNW95QnKIg3VahfkjI", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1808BcVOY1sElBM0Rq99PI", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473504} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-09T11:25:17.426000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:25:17.426000+00:00", "date_updated": "2022-11-09T11:25:17.434000+00:00", "email_ids": ["acti_F6ayqbtGLtiJhO71X2jTAgO2IqmCaeqsLtU1KPdFBUs"], "id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-09T11:25:17.437000", "date_updated": "2022-11-09T11:25:17.437000", "id": "ev_4vcY85NzRPwU6OMmP75L7d", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_BTq3BHQBUWUwhoacAcOSjg1gBUfmbtQv8wn1QFzHtSE", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1808BcVOY1sElBM0Rq99PI", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473506} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "display_name", "name"], "data": {"addresses": [], "contact_ids": ["cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:54:42.377000+00:00", "date_updated": "2022-11-09T11:24:11.537000+00:00", "description": "", "display_name": "Test Lead", "id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "Test Lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-09T11:24:11.539000", "date_updated": "2022-11-09T11:24:11.539000", "id": "ev_55xEWF0m9Hq35kBGl8PvbV", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j/"}, "object_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:59:59.666000+00:00", "display_name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "name": "has:phone_numbers opportunities:1 calls:0 tasks:0"}, "request_id": "req_5bnwTsEA1HPNBCw6jz75qo", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473508} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated"], "data": {"_type": "Call", "activity_at": "2022-11-09T11:20:32.524000+00:00", "call_method": "regular", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "2", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T11:20:38.986000+00:00", "date_created": "2022-11-09T11:20:32.524000+00:00", "date_updated": "2022-11-09T11:20:42.502000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 3, "forwarded_to": null, "has_recording": false, "id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T11:20:42.516000", "date_updated": "2022-11-09T11:20:42.516000", "id": "ev_7iglHptpytSKVapvqOzkdp", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-09T11:20:41.318000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413473510} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T11:20:32.524000+00:00", "call_method": "regular", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T11:20:38.986000+00:00", "date_created": "2022-11-09T11:20:32.524000+00:00", "date_updated": "2022-11-09T11:20:41.318000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 3, "forwarded_to": null, "has_recording": false, "id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Microphone (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"0177d978ede26833baa2fb03ee9aac78299a462efc2fbabc0e58864ef0286102\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Speakers (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Speakers (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"}],\"reports\":{\"googTrack_7c163ea6-87e1-4db8-b5d2-1d93ed359d82\":{\"id\":\"googTrack_7c163ea6-87e1-4db8-b5d2-1d93ed359d82\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googTrackId\":\"7c163ea6-87e1-4db8-b5d2-1d93ed359d82\"},\"googLibjingleSession_2197092195188918700\":{\"id\":\"googLibjingleSession_2197092195188918700\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"0\",\"googTransmitBitrate\":\"0\"},\"googCertificate_D8:DD:B7:99:A0:1A:7F:13:93:22:D7:6F:3D:E3:67:60:B6:F1:D6:97:00:9C:94:8F:91:D6:5A:C9:CB:EB:57:86\":{\"id\":\"googCertificate_D8:DD:B7:99:A0:1A:7F:13:93:22:D7:6F:3D:E3:67:60:B6:F1:D6:97:00:9C:94:8F:91:D6:5A:C9:CB:EB:57:86\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googFingerprint\":\"D8:DD:B7:99:A0:1A:7F:13:93:22:D7:6F:3D:E3:67:60:B6:F1:D6:97:00:9C:94:8F:91:D6:5A:C9:CB:EB:57:86\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFzCBvaADAgECAgkA9AjVBu/K1YowCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIyMTEwODExMjAzMloXDTIyMTIwOTExMjAzMlowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEKxw6Y+YE+lSHCZMp+e5703DcSmIveeMc2Xe+tF8e+1tVA6TgyxJduyPUJVrt1m9KQ1L2wrFPEEkEBdLWRoZBizAKBggqhkjOPQQDAgNJADBGAiEAtUof2sGJWtpKQTPDBlQUyGNvvTN0HenYHx0VtvQ6Q+cCIQCjQDXu5GN46aG/6zrLSz4+ACutfHtTJMF9is8AKImOsg==\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_F6:54:B9:EC:A1:7D:C0:8F:7C:5B:51:D9:01:D9:67:D1:E1:FF:90:D5:3A:C6:C1:4C:16:BE:43:73:FB:71:EE:82\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_D8:DD:B7:99:A0:1A:7F:13:93:22:D7:6F:3D:E3:67:60:B6:F1:D6:97:00:9C:94:8F:91:D6:5A:C9:CB:EB:57:86\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-vnGFkk6j\":{\"id\":\"Cand-vnGFkk6j\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"60433\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-dRjKJ3Wq\":{\"id\":\"Cand-dRjKJ3Wq\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"ssrc_2574602948_send\":{\"id\":\"ssrc_2574602948_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"audioInputLevel\":\"41\",\"packetsLost\":\"0\",\"googRtt\":\"37\",\"totalSamplesDuration\":\"7.81\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"7c163ea6-87e1-4db8-b5d2-1d93ed359d82\",\"totalAudioEnergy\":\"0.131527\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"2574602948\",\"googJitterReceived\":\"2\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"354\",\"bytesSent\":\"27959\"},\"googTrack_15d1c174-575b-485d-b18b-31c3e65e35c8\":{\"id\":\"googTrack_15d1c174-575b-485d-b18b-31c3e65e35c8\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googTrackId\":\"15d1c174-575b-485d-b18b-31c3e65e35c8\"},\"googCertificate_F6:54:B9:EC:A1:7D:C0:8F:7C:5B:51:D9:01:D9:67:D1:E1:FF:90:D5:3A:C6:C1:4C:16:BE:43:73:FB:71:EE:82\":{\"id\":\"googCertificate_F6:54:B9:EC:A1:7D:C0:8F:7C:5B:51:D9:01:D9:67:D1:E1:FF:90:D5:3A:C6:C1:4C:16:BE:43:73:FB:71:EE:82\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googFingerprint\":\"F6:54:B9:EC:A1:7D:C0:8F:7C:5B:51:D9:01:D9:67:D1:E1:FF:90:D5:3A:C6:C1:4C:16:BE:43:73:FB:71:EE:82\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBITCByKADAgECAhRhmpV52OIEAIyrWKctOACEaQV6BzAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA4MTEyMDMzWhcNMjIxMjA5MTEyMDMzWjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARngo+PwX7y15a1n+OepiMCY1QlNy9sFzDFnKDWev3FUiR3kFn8/4pt6H6oRt2r9HnvEqOAi7G/gcZk2Ub+KDaZMAoGCCqGSM49BAMCA0gAMEUCIQD5K3ai5o6+DXaoEYWfNRG61yYBtOsW1BlYbh1JOQgLeAIgHT/nn65p0FMHvklKl0NmEeTiH7K5AzAS20DpVZneYg4=\"},\"Cand-k44zVjXx\":{\"id\":\"Cand-k44zVjXx\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"60433\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853824767\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:60433\",\"consentRequestsSent\":\"1\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"7\",\"googRemoteAddress\":\"3.122.181.63:13076\",\"googRtt\":\"37\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"23319\",\"responsesReceived\":\"7\",\"remoteCandidateId\":\"Cand-1QdfFSK0\",\"localCandidateId\":\"Cand-k44zVjXx\",\"bytesSent\":\"32897\",\"packetsSent\":\"359\"},\"Cand-1QdfFSK0\":{\"id\":\"Cand-1QdfFSK0\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"portNumber\":\"13076\",\"ipAddress\":\"3.122.181.63\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"ssrc_1257216503_recv\":{\"id\":\"ssrc_1257216503_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googDecodingCTN\":\"717\",\"packetsLost\":\"1\",\"googSecondaryDecodedRate\":\"0\",\"googDecodingPLC\":\"17\",\"packetsReceived\":\"302\",\"googJitterReceived\":\"3\",\"googDecodingCNG\":\"0\",\"ssrc\":\"1257216503\",\"googPreferredJitterBufferMs\":\"180\",\"googSpeechExpandRate\":\"0.0244751\",\"totalSamplesDuration\":\"7.17\",\"totalAudioEnergy\":\"0.0245782\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"121\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"1\",\"googDecodingNormal\":\"579\",\"googTrackId\":\"15d1c174-575b-485d-b18b-31c3e65e35c8\",\"audioOutputLevel\":\"1\",\"googAccelerateRate\":\"0\",\"bytesReceived\":\"19187\",\"googCurrentDelayMs\":\"179\",\"googDecodingCTSG\":\"0\",\"googExpandRate\":\"0.115234\",\"googPreemptiveExpandRate\":\"0.00726318\",\"googJitterBufferMs\":\"292\",\"googDecodingMuted\":\"119\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T11:20:41.320000", "date_updated": "2022-11-09T11:20:41.320000", "id": "ev_6ODKgVsQGyzjure7sFADht", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54/"}, "object_id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_49m31UziyF539CVzJe1oxU", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473512} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "duration", "is_joinable", "quality_info", "status"], "data": {"_type": "Call", "activity_at": "2022-11-09T11:20:32.524000+00:00", "call_method": "regular", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T11:20:38.986000+00:00", "date_created": "2022-11-09T11:20:32.524000+00:00", "date_updated": "2022-11-09T11:20:41.318000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 3, "forwarded_to": null, "has_recording": false, "id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Microphone (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"0177d978ede26833baa2fb03ee9aac78299a462efc2fbabc0e58864ef0286102\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Speakers (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Speakers (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"bbfb30bab85425723c464facebc9b1b2a541b0df7afcd1ee86693e2b6ea9bffd\"}],\"reports\":{\"googTrack_7c163ea6-87e1-4db8-b5d2-1d93ed359d82\":{\"id\":\"googTrack_7c163ea6-87e1-4db8-b5d2-1d93ed359d82\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googTrackId\":\"7c163ea6-87e1-4db8-b5d2-1d93ed359d82\"},\"googLibjingleSession_2197092195188918700\":{\"id\":\"googLibjingleSession_2197092195188918700\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"0\",\"googTransmitBitrate\":\"0\"},\"googCertificate_D8:DD:B7:99:A0:1A:7F:13:93:22:D7:6F:3D:E3:67:60:B6:F1:D6:97:00:9C:94:8F:91:D6:5A:C9:CB:EB:57:86\":{\"id\":\"googCertificate_D8:DD:B7:99:A0:1A:7F:13:93:22:D7:6F:3D:E3:67:60:B6:F1:D6:97:00:9C:94:8F:91:D6:5A:C9:CB:EB:57:86\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googFingerprint\":\"D8:DD:B7:99:A0:1A:7F:13:93:22:D7:6F:3D:E3:67:60:B6:F1:D6:97:00:9C:94:8F:91:D6:5A:C9:CB:EB:57:86\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFzCBvaADAgECAgkA9AjVBu/K1YowCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIyMTEwODExMjAzMloXDTIyMTIwOTExMjAzMlowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEKxw6Y+YE+lSHCZMp+e5703DcSmIveeMc2Xe+tF8e+1tVA6TgyxJduyPUJVrt1m9KQ1L2wrFPEEkEBdLWRoZBizAKBggqhkjOPQQDAgNJADBGAiEAtUof2sGJWtpKQTPDBlQUyGNvvTN0HenYHx0VtvQ6Q+cCIQCjQDXu5GN46aG/6zrLSz4+ACutfHtTJMF9is8AKImOsg==\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_F6:54:B9:EC:A1:7D:C0:8F:7C:5B:51:D9:01:D9:67:D1:E1:FF:90:D5:3A:C6:C1:4C:16:BE:43:73:FB:71:EE:82\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_D8:DD:B7:99:A0:1A:7F:13:93:22:D7:6F:3D:E3:67:60:B6:F1:D6:97:00:9C:94:8F:91:D6:5A:C9:CB:EB:57:86\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-vnGFkk6j\":{\"id\":\"Cand-vnGFkk6j\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"60433\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-dRjKJ3Wq\":{\"id\":\"Cand-dRjKJ3Wq\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"ssrc_2574602948_send\":{\"id\":\"ssrc_2574602948_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"audioInputLevel\":\"41\",\"packetsLost\":\"0\",\"googRtt\":\"37\",\"totalSamplesDuration\":\"7.81\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"7c163ea6-87e1-4db8-b5d2-1d93ed359d82\",\"totalAudioEnergy\":\"0.131527\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"2574602948\",\"googJitterReceived\":\"2\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"354\",\"bytesSent\":\"27959\"},\"googTrack_15d1c174-575b-485d-b18b-31c3e65e35c8\":{\"id\":\"googTrack_15d1c174-575b-485d-b18b-31c3e65e35c8\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googTrackId\":\"15d1c174-575b-485d-b18b-31c3e65e35c8\"},\"googCertificate_F6:54:B9:EC:A1:7D:C0:8F:7C:5B:51:D9:01:D9:67:D1:E1:FF:90:D5:3A:C6:C1:4C:16:BE:43:73:FB:71:EE:82\":{\"id\":\"googCertificate_F6:54:B9:EC:A1:7D:C0:8F:7C:5B:51:D9:01:D9:67:D1:E1:FF:90:D5:3A:C6:C1:4C:16:BE:43:73:FB:71:EE:82\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googFingerprint\":\"F6:54:B9:EC:A1:7D:C0:8F:7C:5B:51:D9:01:D9:67:D1:E1:FF:90:D5:3A:C6:C1:4C:16:BE:43:73:FB:71:EE:82\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBITCByKADAgECAhRhmpV52OIEAIyrWKctOACEaQV6BzAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA4MTEyMDMzWhcNMjIxMjA5MTEyMDMzWjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARngo+PwX7y15a1n+OepiMCY1QlNy9sFzDFnKDWev3FUiR3kFn8/4pt6H6oRt2r9HnvEqOAi7G/gcZk2Ub+KDaZMAoGCCqGSM49BAMCA0gAMEUCIQD5K3ai5o6+DXaoEYWfNRG61yYBtOsW1BlYbh1JOQgLeAIgHT/nn65p0FMHvklKl0NmEeTiH7K5AzAS20DpVZneYg4=\"},\"Cand-k44zVjXx\":{\"id\":\"Cand-k44zVjXx\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"60433\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853824767\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:60433\",\"consentRequestsSent\":\"1\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"7\",\"googRemoteAddress\":\"3.122.181.63:13076\",\"googRtt\":\"37\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"23319\",\"responsesReceived\":\"7\",\"remoteCandidateId\":\"Cand-1QdfFSK0\",\"localCandidateId\":\"Cand-k44zVjXx\",\"bytesSent\":\"32897\",\"packetsSent\":\"359\"},\"Cand-1QdfFSK0\":{\"id\":\"Cand-1QdfFSK0\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"portNumber\":\"13076\",\"ipAddress\":\"3.122.181.63\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"ssrc_1257216503_recv\":{\"id\":\"ssrc_1257216503_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-09T11:20:40.460Z\",\"googDecodingCTN\":\"717\",\"packetsLost\":\"1\",\"googSecondaryDecodedRate\":\"0\",\"googDecodingPLC\":\"17\",\"packetsReceived\":\"302\",\"googJitterReceived\":\"3\",\"googDecodingCNG\":\"0\",\"ssrc\":\"1257216503\",\"googPreferredJitterBufferMs\":\"180\",\"googSpeechExpandRate\":\"0.0244751\",\"totalSamplesDuration\":\"7.17\",\"totalAudioEnergy\":\"0.0245782\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"121\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"1\",\"googDecodingNormal\":\"579\",\"googTrackId\":\"15d1c174-575b-485d-b18b-31c3e65e35c8\",\"audioOutputLevel\":\"1\",\"googAccelerateRate\":\"0\",\"bytesReceived\":\"19187\",\"googCurrentDelayMs\":\"179\",\"googDecodingCTSG\":\"0\",\"googExpandRate\":\"0.115234\",\"googPreemptiveExpandRate\":\"0.00726318\",\"googJitterBufferMs\":\"292\",\"googDecodingMuted\":\"119\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T11:20:41.050000", "date_updated": "2022-11-09T11:20:41.320000", "id": "ev_5dBqp1hSwLNZPTg5emzUn1", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54/"}, "object_id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T11:20:38.986000+00:00", "duration": 0, "is_joinable": true, "quality_info": "", "status": "in-progress"}, "request_id": "req_49m31UziyF539CVzJe1oxU", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473514} +{"stream": "events", "data": {"action": "answered", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T11:20:32.524000+00:00", "call_method": "regular", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T11:20:38.986000+00:00", "date_created": "2022-11-09T11:20:32.524000+00:00", "date_updated": "2022-11-09T11:20:38.986000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "is_forwarded": false, "is_joinable": true, "is_to_group_number": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "in-progress", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T11:20:38.989000", "date_updated": "2022-11-09T11:20:38.989000", "id": "ev_6hXAZSf9mrZiIdWL6Gyynl", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54/"}, "object_id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1Bs9g1EZfTyYT41RlQTJjJ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473516} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_answered", "date_updated", "disposition", "status"], "data": {"_type": "Call", "activity_at": "2022-11-09T11:20:32.524000+00:00", "call_method": "regular", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": "2022-11-09T11:20:38.986000+00:00", "date_created": "2022-11-09T11:20:32.524000+00:00", "date_updated": "2022-11-09T11:20:38.986000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "is_forwarded": false, "is_joinable": true, "is_to_group_number": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "in-progress", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T11:20:38.989000", "date_updated": "2022-11-09T11:20:38.989000", "id": "ev_0XMEJsOA80ZKP9qqd5uX0t", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/twilio/callback/outbound/acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54/"}, "object_id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_answered": null, "date_updated": "2022-11-09T11:20:34.887000+00:00", "disposition": null, "status": "created"}, "request_id": "req_1Bs9g1EZfTyYT41RlQTJjJ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473518} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_joinable", "local_country_iso", "local_phone", "local_phone_formatted"], "data": {"_type": "Call", "activity_at": "2022-11-09T11:20:32.524000+00:00", "call_method": "regular", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T11:20:32.524000+00:00", "date_updated": "2022-11-09T11:20:34.887000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "is_forwarded": false, "is_joinable": true, "is_to_group_number": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T11:20:33.495000", "date_updated": "2022-11-09T11:20:34.889000", "id": "ev_3czdWZgRgK3cBOBvK5NQan", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/twilio/callback/conference/acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54/"}, "object_id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T11:20:32.524000+00:00", "is_joinable": false, "local_country_iso": "", "local_phone": null, "local_phone_formatted": null}, "request_id": "req_2sdno5K3DlEjhTNpclkN6P", "user_id": null}, "emitted_at": 1670413473520} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-09T11:20:32.524000+00:00", "call_method": "regular", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-09T11:20:32.524000+00:00", "date_updated": "2022-11-09T11:20:32.524000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-09T11:20:32.526000", "date_updated": "2022-11-09T11:20:32.526000", "id": "ev_1bvD8ilfgd0UfgvXNSs2b7", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/call/"}, "object_id": "acti_2PDiIs2kT5NQaipTXd1lyavwVLS5a6wipeheGVWOO54", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6sUjmwO2p0W4ocoquG5Ybf", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473522} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-09T11:20:03.553000", "date_updated": "2022-11-09T11:20:03.553000", "id": "ev_1ijHfZ8tXdNHuA9ZnFbQ4j", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "DELETE", "request_path": "/api/v1/activity/sms/acti_Gnyh6aO8vqel7IQF7vNLBnCbE9qtVX7Q1w7GLrDAJYv/"}, "object_id": "acti_Gnyh6aO8vqel7IQF7vNLBnCbE9qtVX7Q1w7GLrDAJYv", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "SMS", "activity_at": "2022-11-09T11:20:00.471000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:20:00.471000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T11:20:00.471000+00:00", "direction": "outbound", "error_message": null, "id": "acti_Gnyh6aO8vqel7IQF7vNLBnCbE9qtVX7Q1w7GLrDAJYv", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "request_id": "req_2sLDsq3iC8wUhce3rvEQ0a", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473524} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-09T11:20:00.471000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:20:00.471000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T11:20:00.471000+00:00", "direction": "outbound", "error_message": null, "id": "acti_Gnyh6aO8vqel7IQF7vNLBnCbE9qtVX7Q1w7GLrDAJYv", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T11:20:00.474000", "date_updated": "2022-11-09T11:20:00.474000", "id": "ev_5oJa1oB4sRVxKIFYOSJxWr", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_Gnyh6aO8vqel7IQF7vNLBnCbE9qtVX7Q1w7GLrDAJYv", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0g7VZx9CjY4jQYdQ6hUaam", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473525} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T15:44:17.803000+00:00", "attachments": [], "bcc": [], "body_html": "Test", "body_preview": "Test", "body_text": "Test", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.819000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:44:17.803000+00:00", "date_updated": "2022-11-09T11:12:59.685000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:44:18 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792225784.2629.13990873364570888607@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "(no subject)", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166792225784.2629.13990873364570888607@smtpgw.close.com>", "<166792225784.2629.12825104744076060180@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "85.209.47.207", "opened_at": "2022-11-09T11:12:59.685000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (2022-11-09)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "(no subject)", "template_id": null, "template_name": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:12:59.686000", "date_updated": "2022-11-09T11:12:59.686000", "id": "ev_2mLHkFB2qcuU1tnrzng1yY", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs/LKMjsg1Cwf.png"}, "object_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:28:55.242000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_1D8wam16hReXRmRF64BumW", "user_id": null}, "emitted_at": 1670413473527} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-09T07:30:00+00:00", "date_created": "2022-11-09T11:05:46.682000+00:00", "date_updated": "2022-11-09T11:06:11.243000+00:00", "due_date": "2022-11-09T07:30:00+00:00", "id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "is_complete": true, "is_dateless": false, "is_new": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": "acti_DJOFYNqKoXSmPB4yJHVRafxAqhnvk5olHmmihw4cqND", "object_type": "taskcompleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-09T11:06:11.244000", "date_updated": "2022-11-09T11:06:11.244000", "id": "ev_2FDXULaFhxJ6offJoDp7XD", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0T0TFq6826tse4jpXjuCcZ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473529} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_complete", "is_new", "object_id", "object_type", "view"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-09T07:30:00+00:00", "date_created": "2022-11-09T11:05:46.682000+00:00", "date_updated": "2022-11-09T11:06:11.243000+00:00", "due_date": "2022-11-09T07:30:00+00:00", "id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "is_complete": true, "is_dateless": false, "is_new": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": "acti_DJOFYNqKoXSmPB4yJHVRafxAqhnvk5olHmmihw4cqND", "object_type": "taskcompleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-09T11:06:10.600000", "date_updated": "2022-11-09T11:06:11.244000", "id": "ev_0k5vRyvRMybU5LUgSUe8NE", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-09T11:05:46.682000+00:00", "is_complete": false, "is_new": true, "object_id": null, "object_type": null, "view": "inbox"}, "request_id": "req_0T0TFq6826tse4jpXjuCcZ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473531} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "TaskCompleted", "activity_at": "2022-11-09T11:06:11.134000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T11:06:11.134000+00:00", "date_updated": "2022-11-09T11:06:11.134000+00:00", "id": "acti_DJOFYNqKoXSmPB4yJHVRafxAqhnvk5olHmmihw4cqND", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "task_assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "task_assigned_to_name": "Jean Lafleur", "task_id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "task_text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T11:06:11.147000", "date_updated": "2022-11-09T11:06:11.147000", "id": "ev_6wHeSriiXOxk8fhwk0pWcS", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "acti_DJOFYNqKoXSmPB4yJHVRafxAqhnvk5olHmmihw4cqND", "object_type": "activity.task_completed", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0T0TFq6826tse4jpXjuCcZ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473533} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_updated", "due_date", "view"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-12", "date_created": "2022-11-09T11:05:42.844000+00:00", "date_updated": "2022-11-09T11:06:06.147000+00:00", "due_date": "2022-11-12", "id": "task_7NzjQt8zXoqAUMJsb58EGBP4rqTTbm5iR8jRuOY3MAJ", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-09T11:06:06.148000", "date_updated": "2022-11-09T11:06:06.148000", "id": "ev_1YxZniNj5cyrqu1K9ikX6H", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "task_7NzjQt8zXoqAUMJsb58EGBP4rqTTbm5iR8jRuOY3MAJ", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-09T07:00:00+00:00", "date_updated": "2022-11-09T11:05:42.844000+00:00", "due_date": "2022-11-09T07:00:00+00:00", "view": "inbox"}, "request_id": "req_7RisWp5bqTH3iaI2fwWcP6", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473535} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_updated", "due_date", "view"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-12", "date_created": "2022-11-08T15:10:57.220000+00:00", "date_updated": "2022-11-09T11:06:06.145000+00:00", "due_date": "2022-11-12", "id": "task_Wgzt6t0ZGRlvZTnfhSfxHoFRWm6zXBMuuecKxRkfYmZ", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-09T11:06:06.146000", "date_updated": "2022-11-09T11:06:06.146000", "id": "ev_2gDSHqHH4NcpIggBbkYocM", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "task_Wgzt6t0ZGRlvZTnfhSfxHoFRWm6zXBMuuecKxRkfYmZ", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-08T08:00:00+00:00", "date_updated": "2022-11-08T15:10:57.220000+00:00", "due_date": "2022-11-08T08:00:00+00:00", "view": "inbox"}, "request_id": "req_7RisWp5bqTH3iaI2fwWcP6", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473537} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-09T07:30:00+00:00", "date_created": "2022-11-09T11:05:46.682000+00:00", "date_updated": "2022-11-09T11:05:46.682000+00:00", "due_date": "2022-11-09T07:30:00+00:00", "id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "date_created": "2022-11-09T11:05:46.684000", "date_updated": "2022-11-09T11:05:46.684000", "id": "ev_3LuMDB4nxQ2u3yMrDSlunw", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_iHHSk7GuvunATuloc0hM2k2btiuJpasL12GkwHnIVjP", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6VKjZMwRef0sMehjOulcUr", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473539} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-09T07:00:00+00:00", "date_created": "2022-11-09T11:05:42.844000+00:00", "date_updated": "2022-11-09T11:05:42.844000+00:00", "due_date": "2022-11-09T07:00:00+00:00", "id": "task_7NzjQt8zXoqAUMJsb58EGBP4rqTTbm5iR8jRuOY3MAJ", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "date_created": "2022-11-09T11:05:42.845000", "date_updated": "2022-11-09T11:05:42.845000", "id": "ev_3UMzH6Zm7pHdwUUaMowZl8", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_7NzjQt8zXoqAUMJsb58EGBP4rqTTbm5iR8jRuOY3MAJ", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_4VlxuR1MClDnzOgxkz0QYr", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473541} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-30T08:00:00+00:00", "date_created": "2022-11-08T15:13:13.470000+00:00", "date_updated": "2022-11-09T10:57:24.756000+00:00", "due_date": "2022-11-30T08:00:00+00:00", "id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "is_complete": true, "is_dateless": false, "is_new": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": "acti_SFQmP02YDdCHlkwAWoEtIfZXEOvhoenTmKVdEw7BtJB", "object_type": "taskcompleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-09T10:57:24.757000", "date_updated": "2022-11-09T10:57:24.757000", "id": "ev_7bSLsD1s7emtsOWO8vrEke", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD/"}, "object_id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2DdLcTamiMGUdy7ZHF7UrL", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473543} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_complete", "is_new", "object_id", "object_type", "view"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-30T08:00:00+00:00", "date_created": "2022-11-08T15:13:13.470000+00:00", "date_updated": "2022-11-09T10:57:24.756000+00:00", "due_date": "2022-11-30T08:00:00+00:00", "id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "is_complete": true, "is_dateless": false, "is_new": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": "acti_SFQmP02YDdCHlkwAWoEtIfZXEOvhoenTmKVdEw7BtJB", "object_type": "taskcompleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-09T10:57:24.757000", "date_updated": "2022-11-09T10:57:24.757000", "id": "ev_4sWQk4Tzf8iMR5Adztpjjk", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD/"}, "object_id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:13:13.470000+00:00", "is_complete": false, "is_new": true, "object_id": null, "object_type": null, "view": "future"}, "request_id": "req_2DdLcTamiMGUdy7ZHF7UrL", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473544} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "TaskCompleted", "activity_at": "2022-11-09T10:57:24.688000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T10:57:24.688000+00:00", "date_updated": "2022-11-09T10:57:24.688000+00:00", "id": "acti_SFQmP02YDdCHlkwAWoEtIfZXEOvhoenTmKVdEw7BtJB", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "task_assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "task_assigned_to_name": "Jean Lafleur", "task_id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "task_text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T10:57:24.689000", "date_updated": "2022-11-09T10:57:24.689000", "id": "ev_55flgGWnQNthbCbyYpgtc2", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD/"}, "object_id": "acti_SFQmP02YDdCHlkwAWoEtIfZXEOvhoenTmKVdEw7BtJB", "object_type": "activity.task_completed", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2DdLcTamiMGUdy7ZHF7UrL", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473546} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-09T10:52:39.971000", "date_updated": "2022-11-09T10:52:39.971000", "id": "ev_0RY8MtnGmnhV3pYq3EdWga", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "DELETE", "request_path": "/api/v1/activity/sms/acti_EF5H704ku60L2PXVDeecQDqPVpc00w48tDLUWCMibo8/"}, "object_id": "acti_EF5H704ku60L2PXVDeecQDqPVpc00w48tDLUWCMibo8", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "SMS", "activity_at": "2022-11-09T10:51:35.403000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T10:51:35.403000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T10:51:35.403000+00:00", "direction": "outbound", "error_message": null, "id": "acti_EF5H704ku60L2PXVDeecQDqPVpc00w48tDLUWCMibo8", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "request_id": "req_10ilizvZFT929rcf5KNZi5", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473548} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-09T10:51:35.403000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-09T10:51:35.403000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-09T10:51:35.403000+00:00", "direction": "outbound", "error_message": null, "id": "acti_EF5H704ku60L2PXVDeecQDqPVpc00w48tDLUWCMibo8", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T10:51:35.405000", "date_updated": "2022-11-09T10:51:35.405000", "id": "ev_0y51hUsh6RyOOFGGJSjvqX", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_EF5H704ku60L2PXVDeecQDqPVpc00w48tDLUWCMibo8", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2PluSfB4Eew4XSOlMKYitI", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473550} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-09T07:00:01.850000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:55.510000+00:00", "date_scheduled": "2022-11-09T07:00:00+00:00", "date_sent": "2022-11-09T07:00:01.850000+00:00", "date_updated": "2022-11-09T07:00:01.850000+00:00", "direction": "outbound", "error_message": null, "id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "", "text": "Test message", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T07:00:01.852000", "date_updated": "2022-11-09T07:00:01.852000", "id": "ev_2MeydKsm6JOHSYOZ8tvXG7", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473552} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "status"], "data": {"_type": "SMS", "activity_at": "2022-11-09T07:00:01.850000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:55.510000+00:00", "date_scheduled": "2022-11-09T07:00:00+00:00", "date_sent": "2022-11-09T07:00:01.850000+00:00", "date_updated": "2022-11-09T07:00:01.850000+00:00", "direction": "outbound", "error_message": null, "id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "", "text": "Test message", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T07:00:01.852000", "date_updated": "2022-11-09T07:00:01.852000", "id": "ev_2EvhJfDdEnTsupCIFyLby2", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:01:55.510000+00:00", "date_sent": null, "date_updated": "2022-11-09T07:00:01.142000+00:00", "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413473554} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated", "status"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:01:55.510000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:55.510000+00:00", "date_scheduled": "2022-11-09T07:00:00+00:00", "date_sent": null, "date_updated": "2022-11-09T07:00:01.142000+00:00", "direction": "outbound", "error_message": null, "id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "", "text": "Test message", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-09T07:00:00.928000", "date_updated": "2022-11-09T07:00:01.144000", "id": "ev_2mnFpgRnXfOdQqzpAmnYa2", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-08T15:44:34.783000+00:00", "status": "scheduled"}, "request_id": null, "user_id": null}, "emitted_at": 1670413473556} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:53:35.311000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what w", "body_text": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:53:35.598000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:53:35.311000+00:00", "date_updated": "2022-11-09T02:40:26.387000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:53:36 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166793001574.2977.16151555672380558322@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166793001574.2977.16151555672380558322@smtpgw.close.com>", "<166793001574.2977.11109080189748637010@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.22", "opened_at": "2022-11-08T17:53:39.970000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.249.83.109", "opened_at": "2022-11-08T17:53:43.225000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.173", "opened_at": "2022-11-08T19:21:22.529000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.173", "opened_at": "2022-11-08T22:08:24.873000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "104.28.57.228", "opened_at": "2022-11-09T02:40:26.387000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0"}], "opens_summary": "Opened by Steli Efti (5 times, latest 2022-11-09)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T02:40:26.389000", "date_updated": "2022-11-09T02:40:26.389000", "id": "ev_31rYqots7eYBLLbEpydjYN", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW/dZva3CP7tI.png"}, "object_id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T22:08:24.873000+00:00", "opens": [{"ip_address": "66.249.92.22", "opened_at": "2022-11-08T17:53:39.970000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.249.83.109", "opened_at": "2022-11-08T17:53:43.225000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.173", "opened_at": "2022-11-08T19:21:22.529000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.173", "opened_at": "2022-11-08T22:08:24.873000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (4 times, latest 2022-11-08)"}, "request_id": "req_1RH0PlXUrnXXbxW8pMJnCe", "user_id": null}, "emitted_at": 1670413473558} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:36:07.226000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:36:07.646000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:36:07.226000+00:00", "date_updated": "2022-11-09T02:40:26.385000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:36:08 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792536780.39994.6476676108875520271@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792536780.39994.6476676108875520271@smtpgw.close.com>", "<166792536780.39994.10624245342771321646@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T16:36:14.654000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.102.8.136", "opened_at": "2022-11-08T16:36:16.238000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.169", "opened_at": "2022-11-08T19:23:49.925000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.180", "opened_at": "2022-11-08T21:43:30.790000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "104.28.57.228", "opened_at": "2022-11-09T02:40:26.385000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0"}], "opens_summary": "Opened by Steli Efti (5 times, latest 2022-11-09)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-09T02:40:26.389000", "date_updated": "2022-11-09T02:40:26.389000", "id": "ev_1okyn62vQZgkPpQRebMtFr", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y/dZva3CP7tI.png"}, "object_id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T21:43:30.790000+00:00", "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T16:36:14.654000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.102.8.136", "opened_at": "2022-11-08T16:36:16.238000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.169", "opened_at": "2022-11-08T19:23:49.925000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.180", "opened_at": "2022-11-08T21:43:30.790000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (4 times, latest 2022-11-08)"}, "request_id": "req_72rqyqKlE2NFhOtFqx10GQ", "user_id": null}, "emitted_at": 1670413473560} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:53:35.311000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what w", "body_text": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:53:35.598000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:53:35.311000+00:00", "date_updated": "2022-11-08T22:08:24.873000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:53:36 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166793001574.2977.16151555672380558322@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166793001574.2977.16151555672380558322@smtpgw.close.com>", "<166793001574.2977.11109080189748637010@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.22", "opened_at": "2022-11-08T17:53:39.970000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.249.83.109", "opened_at": "2022-11-08T17:53:43.225000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.173", "opened_at": "2022-11-08T19:21:22.529000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.173", "opened_at": "2022-11-08T22:08:24.873000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (4 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T22:08:24.874000", "date_updated": "2022-11-08T22:08:24.874000", "id": "ev_70DxFYxAhvJYOgsTcOmmFl", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW/dZva3CP7tI.png"}, "object_id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T19:21:22.530000+00:00", "opens": [{"ip_address": "66.249.92.22", "opened_at": "2022-11-08T17:53:39.970000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.249.83.109", "opened_at": "2022-11-08T17:53:43.225000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.173", "opened_at": "2022-11-08T19:21:22.529000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (3 times, latest 2022-11-08)"}, "request_id": "req_5KrsYdqmOV4PD5JUYlmSKw", "user_id": null}, "emitted_at": 1670413473562} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:36:07.226000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:36:07.646000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:36:07.226000+00:00", "date_updated": "2022-11-08T21:43:30.790000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:36:08 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792536780.39994.6476676108875520271@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792536780.39994.6476676108875520271@smtpgw.close.com>", "<166792536780.39994.10624245342771321646@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T16:36:14.654000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.102.8.136", "opened_at": "2022-11-08T16:36:16.238000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.169", "opened_at": "2022-11-08T19:23:49.925000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.180", "opened_at": "2022-11-08T21:43:30.790000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (4 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T21:43:30.791000", "date_updated": "2022-11-08T21:43:30.791000", "id": "ev_5S5eNcxWFgPQ9jWVmcJBJR", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y/dZva3CP7tI.png"}, "object_id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T19:23:49.926000+00:00", "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T16:36:14.654000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.102.8.136", "opened_at": "2022-11-08T16:36:16.238000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.169", "opened_at": "2022-11-08T19:23:49.925000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (3 times, latest 2022-11-08)"}, "request_id": "req_11Zb4euHpa9d6cAzDBAytI", "user_id": null}, "emitted_at": 1670413473564} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:23:04.323000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Nick,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur", "body_text": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:23:04.668000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:23:04.323000+00:00", "date_updated": "2022-11-08T20:44:30.910000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:23:05 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792458488.29477.5187137325155036854@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792458488.29477.5187137325155036854@smtpgw.close.com>", "<166792458488.29477.3151986449249141034@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "35.231.92.0", "opened_at": "2022-11-08T20:44:30.910000+00:00", "opened_by": "Nick Persico ", "user_agent": "Superhuman"}], "opens_summary": "Opened by Nick Persico (2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_3J812U6VNcZBmBDEJ1iIdX", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Nick Persico "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T20:44:30.912000", "date_updated": "2022-11-08T20:44:30.912000", "id": "ev_0VCtpzcZriZCX7hW1Y815B", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz/hLR39c4vKU.png"}, "object_id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:23:06.464000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_1pmMosuVvixO6W6sDTLt46", "user_id": null}, "emitted_at": 1670413473566} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:36:07.226000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:36:07.646000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:36:07.226000+00:00", "date_updated": "2022-11-08T19:23:49.926000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:36:08 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792536780.39994.6476676108875520271@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792536780.39994.6476676108875520271@smtpgw.close.com>", "<166792536780.39994.10624245342771321646@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T16:36:14.654000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.102.8.136", "opened_at": "2022-11-08T16:36:16.238000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.169", "opened_at": "2022-11-08T19:23:49.925000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (3 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T19:23:49.927000", "date_updated": "2022-11-08T19:23:49.927000", "id": "ev_3sJuqOBTaTfoHbHwfUEUXZ", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y/dZva3CP7tI.png"}, "object_id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:36:16.238000+00:00", "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T16:36:14.654000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.102.8.136", "opened_at": "2022-11-08T16:36:16.238000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (2 times, latest 2022-11-08)"}, "request_id": "req_1I431N6tUhki1Yxc0yn538", "user_id": null}, "emitted_at": 1670413473568} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:53:35.311000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what w", "body_text": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:53:35.598000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:53:35.311000+00:00", "date_updated": "2022-11-08T19:21:22.530000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:53:36 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166793001574.2977.16151555672380558322@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166793001574.2977.16151555672380558322@smtpgw.close.com>", "<166793001574.2977.11109080189748637010@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.22", "opened_at": "2022-11-08T17:53:39.970000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.249.83.109", "opened_at": "2022-11-08T17:53:43.225000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}, {"ip_address": "66.249.84.173", "opened_at": "2022-11-08T19:21:22.529000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (3 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T19:21:22.531000", "date_updated": "2022-11-08T19:21:22.531000", "id": "ev_6AtWeZxoBCVNEssXiY54dP", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW/dZva3CP7tI.png"}, "object_id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T17:53:43.225000+00:00", "opens": [{"ip_address": "66.249.92.22", "opened_at": "2022-11-08T17:53:39.970000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.249.83.109", "opened_at": "2022-11-08T17:53:43.225000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (2 times, latest 2022-11-08)"}, "request_id": "req_6DJP4JKJpNWB9AcWj2bazg", "user_id": null}, "emitted_at": 1670413473570} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:53:35.311000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what w", "body_text": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:53:35.598000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:53:35.311000+00:00", "date_updated": "2022-11-08T17:53:43.225000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:53:36 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166793001574.2977.16151555672380558322@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166793001574.2977.16151555672380558322@smtpgw.close.com>", "<166793001574.2977.11109080189748637010@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.22", "opened_at": "2022-11-08T17:53:39.970000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.249.83.109", "opened_at": "2022-11-08T17:53:43.225000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (2 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:53:39.972000", "date_updated": "2022-11-08T17:53:43.227000", "id": "ev_1rRKbmtHjkw5zQZtTZjzN3", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW/dZva3CP7tI.png"}, "object_id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T17:53:36.810000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_09kL38r2FfGXFAzLME0U8S", "user_id": null}, "emitted_at": 1670413473572} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T17:53:35.311139", "date_created": "2022-11-08T17:53:35.311139", "date_sent": "2022-11-08T17:53:35.311139", "date_updated": "2022-11-08T17:53:36.989554", "email_id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "id": "subhis_3tp9z3dlpnZovLsCU4F8g8", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": "<166793001574.2977.16151555672380558322@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "completed", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T17:53:36.989000", "date_updated": "2022-11-08T17:53:36.989000", "id": "ev_763qjsVQ9s3PHtY3OJ6Z9i", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_3tp9z3dlpnZovLsCU4F8g8", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T17:53:35.727084", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413473574} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T17:53:35.312000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:53:35.312000+00:00", "date_updated": "2022-11-08T17:53:36.856000+00:00", "email_ids": ["acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg"], "id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "latest_normalized_subject": "Close (Example Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 4, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T17:53:36.860000", "date_updated": "2022-11-08T17:53:36.860000", "id": "ev_5RgGUY3VrUffOdkofiZJSE", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:53:35.599000+00:00", "date_created": "2022-11-08T17:53:35.599000+00:00", "date_updated": "2022-11-08T17:53:35.607000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474220} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T17:53:35.311000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what w", "body_text": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:53:35.598000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:53:35.311000+00:00", "date_updated": "2022-11-08T17:53:36.810000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:53:36 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166793001574.2977.16151555672380558322@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166793001574.2977.16151555672380558322@smtpgw.close.com>", "<166793001574.2977.11109080189748637010@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:53:36.813000", "date_updated": "2022-11-08T17:53:36.813000", "id": "ev_7KLLc8c6IfcH2FBjh3hkMz", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474222} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:53:35.311000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what w", "body_text": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:53:35.598000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:53:35.311000+00:00", "date_updated": "2022-11-08T17:53:36.810000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:53:36 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166793001574.2977.16151555672380558322@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166793001574.2977.16151555672380558322@smtpgw.close.com>", "<166793001574.2977.11109080189748637010@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:53:36.813000", "date_updated": "2022-11-08T17:53:36.813000", "id": "ev_5M4ASxt14Ev8tQDsrirhYX", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:53:35.598000+00:00", "date_sent": null, "date_updated": "2022-11-08T17:53:35.598000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474224} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T17:53:35.311139", "date_sent": null, "date_updated": "2022-11-08T17:53:35.727084", "email_id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "id": "subhis_3tp9z3dlpnZovLsCU4F8g8", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "status": "pending", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T17:53:35.727000", "date_updated": "2022-11-08T17:53:35.727000", "id": "ev_0CHReiDWhQ2ZFxyLdVUnWs", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_3tp9z3dlpnZovLsCU4F8g8", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474226} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "sales@close.com", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:43.734431", "date_updated": "2022-11-08T17:53:35.714692", "id": "sub_5kEnI9yY80Y9mjetrZqrxn", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T17:53:35.311139", "updated_by_id": null}, "date_created": "2022-11-08T17:53:35.714000", "date_updated": "2022-11-08T17:53:35.714000", "id": "ev_3RR3TVLCE2ld8IQRnMfIhq", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:44.130130", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474228} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "n_emails"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T17:53:35.599000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:53:35.599000+00:00", "date_updated": "2022-11-08T17:53:35.607000+00:00", "email_ids": ["acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg"], "id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "latest_normalized_subject": "Close (Example Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 4, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T17:53:35.611000", "date_updated": "2022-11-08T17:53:35.611000", "id": "ev_44EMue0doxS3DWYc59j2MK", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:41:58.197000+00:00", "date_created": "2022-11-08T17:41:58.197000+00:00", "date_updated": "2022-11-08T17:42:03.175000+00:00", "n_emails": 3}, "request_id": null, "user_id": null}, "emitted_at": 1670413474230} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T17:53:35.598000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what w", "body_text": "Hi Steli, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:53:35.598000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T17:53:35.598000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Steli Efti "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:53:35.600000", "date_updated": "2022-11-08T17:53:35.600000", "id": "ev_1cxF5d8xUVFJY9nkJDVpUB", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_JtQ6sb96zkzIUutLPVgnTRjnJOnXERet0nXplZfkuaW", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474232} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:41:58.196000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Support,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what", "body_text": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:41:58.589000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:41:58.196000+00:00", "date_updated": "2022-11-08T17:42:03.103000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:41:59 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792931876.62373.17646468751668935681@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "support@close.com", "name": "Support"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792931876.62373.17646468751668935681@smtpgw.close.com>", "<166792931876.62373.6144271479235161876@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.22", "opened_at": "2022-11-08T17:42:01.966000+00:00", "opened_by": "Support ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.249.92.24", "opened_at": "2022-11-08T17:42:03.103000+00:00", "opened_by": "Support ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}], "opens_summary": "Opened by Support (2 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Support "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:42:01.968000", "date_updated": "2022-11-08T17:42:03.105000", "id": "ev_0j3sRuZqfabhlFzkoI5U9q", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m/aK8bDZwXng.png"}, "object_id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T17:41:59.951000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_3XiKPvW7BKDm7ILUEObUn0", "user_id": null}, "emitted_at": 1670413474234} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T17:41:58.196054", "date_created": "2022-11-08T17:41:58.196054", "date_sent": "2022-11-08T17:41:58.196054", "date_updated": "2022-11-08T17:42:00.115342", "email_id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "id": "subhis_2qWOA5PrOM0Tv1BOd42GVN", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": "<166792931876.62373.17646468751668935681@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "status": "completed", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T17:42:00.115000", "date_updated": "2022-11-08T17:42:00.115000", "id": "ev_4uBXKFU01npSzxwmdUw8gq", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_2qWOA5PrOM0Tv1BOd42GVN", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T17:41:58.741551", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474236} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T17:41:58.197000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:41:58.197000+00:00", "date_updated": "2022-11-08T17:41:59.992000+00:00", "email_ids": ["acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg"], "id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "latest_normalized_subject": "Close (Example Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 3, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T17:41:59.995000", "date_updated": "2022-11-08T17:41:59.995000", "id": "ev_4qqU3lNfpK14Zp5aAxTuQp", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:41:58.590000+00:00", "date_created": "2022-11-08T17:41:58.590000+00:00", "date_updated": "2022-11-08T17:41:58.599000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474238} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T17:41:58.196000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Support,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what", "body_text": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:41:58.589000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:41:58.196000+00:00", "date_updated": "2022-11-08T17:41:59.951000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:41:59 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792931876.62373.17646468751668935681@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "support@close.com", "name": "Support"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792931876.62373.17646468751668935681@smtpgw.close.com>", "<166792931876.62373.6144271479235161876@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Support "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:41:59.954000", "date_updated": "2022-11-08T17:41:59.954000", "id": "ev_7X3JuXL5FKhUrCFAczIhtG", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474240} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:41:58.196000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Support,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what", "body_text": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:41:58.589000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:41:58.196000+00:00", "date_updated": "2022-11-08T17:41:59.951000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:41:59 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792931876.62373.17646468751668935681@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "support@close.com", "name": "Support"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792931876.62373.17646468751668935681@smtpgw.close.com>", "<166792931876.62373.6144271479235161876@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Support "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:41:59.954000", "date_updated": "2022-11-08T17:41:59.954000", "id": "ev_5Oby5uNZMChaEAZyTqELI5", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:41:58.589000+00:00", "date_sent": null, "date_updated": "2022-11-08T17:41:58.589000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "support@close.com", "name": "Support"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474242} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T17:41:58.196054", "date_sent": null, "date_updated": "2022-11-08T17:41:58.741551", "email_id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "id": "subhis_2qWOA5PrOM0Tv1BOd42GVN", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "status": "pending", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T17:41:58.741000", "date_updated": "2022-11-08T17:41:58.741000", "id": "ev_3257txu05EocWtpgS0teGe", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_2qWOA5PrOM0Tv1BOd42GVN", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474244} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "support@close.com", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:53.882456", "date_updated": "2022-11-08T17:41:58.726863", "id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T17:41:58.196054", "updated_by_id": null}, "date_created": "2022-11-08T17:41:58.726000", "date_updated": "2022-11-08T17:41:58.726000", "id": "ev_6KhBMwHXL36FL6HYldma1F", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:54.415374", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474245} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "n_emails"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T17:41:58.590000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:41:58.590000+00:00", "date_updated": "2022-11-08T17:41:58.599000+00:00", "email_ids": ["acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg"], "id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "latest_normalized_subject": "Close (Example Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 3, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T17:41:58.602000", "date_updated": "2022-11-08T17:41:58.602000", "id": "ev_4DunYiPnmG3Ye7sdgHvWom", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:15:11.280000+00:00", "date_created": "2022-11-08T17:15:11.280000+00:00", "date_updated": "2022-11-08T17:15:14.784000+00:00", "n_emails": 2}, "request_id": null, "user_id": null}, "emitted_at": 1670413474247} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T17:41:58.589000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Support,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what", "body_text": "Hi Support, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:41:58.589000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T17:41:58.589000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "support@close.com", "name": "Support"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Support "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:41:58.592000", "date_updated": "2022-11-08T17:41:58.592000", "id": "ev_4aDnWmkF2Kdwv8fZZAthuO", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_bY6szlDdTDFzI09pvrWJ9SPvZE9G7N96rXCKfZL8a4m", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474249} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:15:11.279000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Nick,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we", "body_text": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:15:11.656000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:15:11.279000+00:00", "date_updated": "2022-11-08T17:15:14.724000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:15:12 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792771182.46793.15708798519258202100@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792771182.46793.15708798519258202100@smtpgw.close.com>", "<166792771182.46793.6902395509032896353@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.10", "opened_at": "2022-11-08T17:15:14.724000+00:00", "opened_by": "Nick Persico ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}], "opens_summary": "Opened by Nick Persico (2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Nick Persico "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:15:14.726000", "date_updated": "2022-11-08T17:15:14.726000", "id": "ev_0OTu0FLjH6X8T0AWe6jxxO", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3/hLR39c4vKU.png"}, "object_id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T17:15:12.868000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_2OFNIG4KL4iLWMg4W6qeg8", "user_id": null}, "emitted_at": 1670413474251} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T17:15:11.279217", "date_created": "2022-11-08T17:15:11.279217", "date_sent": "2022-11-08T17:15:11.279217", "date_updated": "2022-11-08T17:15:13.041461", "email_id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "id": "subhis_1ra3WRU358DpsX8fgL6Aru", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": "<166792771182.46793.15708798519258202100@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "status": "completed", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T17:15:13.041000", "date_updated": "2022-11-08T17:15:13.041000", "id": "ev_6Rg3zlT97SPlByFMZQt1WK", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_1ra3WRU358DpsX8fgL6Aru", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T17:15:11.805746", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474253} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T17:15:11.280000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:15:11.280000+00:00", "date_updated": "2022-11-08T17:15:12.912000+00:00", "email_ids": ["acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg"], "id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "latest_normalized_subject": "Close (Example Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 2, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T17:15:12.914000", "date_updated": "2022-11-08T17:15:12.914000", "id": "ev_5XcjeqJhtCg9x5WRw0hfYi", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:15:11.657000+00:00", "date_created": "2022-11-08T17:15:11.657000+00:00", "date_updated": "2022-11-08T17:15:11.665000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474255} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T17:15:11.279000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Nick,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we", "body_text": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:15:11.656000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:15:11.279000+00:00", "date_updated": "2022-11-08T17:15:12.868000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:15:12 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792771182.46793.15708798519258202100@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792771182.46793.15708798519258202100@smtpgw.close.com>", "<166792771182.46793.6902395509032896353@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Nick Persico "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:15:12.871000", "date_updated": "2022-11-08T17:15:12.871000", "id": "ev_6N93p1iZkrD5VK0FR3GOkr", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474258} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:15:11.279000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Nick,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we", "body_text": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:15:11.656000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:15:11.279000+00:00", "date_updated": "2022-11-08T17:15:12.868000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:15:12 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792771182.46793.15708798519258202100@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792771182.46793.15708798519258202100@smtpgw.close.com>", "<166792771182.46793.6902395509032896353@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Nick Persico "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:15:12.871000", "date_updated": "2022-11-08T17:15:12.871000", "id": "ev_5mg0MvlqIhfNOEOkymG7Rs", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:15:11.656000+00:00", "date_sent": null, "date_updated": "2022-11-08T17:15:11.656000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474261} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T17:15:11.279217", "date_sent": null, "date_updated": "2022-11-08T17:15:11.805746", "email_id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "id": "subhis_1ra3WRU358DpsX8fgL6Aru", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "status": "pending", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T17:15:11.805000", "date_updated": "2022-11-08T17:15:11.805000", "id": "ev_1qLvS1YaxHA6qZNQWRIB4K", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_1ra3WRU358DpsX8fgL6Aru", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474263} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "nick@close.com", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:47.911844", "date_updated": "2022-11-08T17:15:11.794926", "id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T17:15:11.279217", "updated_by_id": null}, "date_created": "2022-11-08T17:15:11.794000", "date_updated": "2022-11-08T17:15:11.794000", "id": "ev_21duaLMISHRfzDLCEJs8Jg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:48.567445", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474265} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "n_emails"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T17:15:11.657000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:15:11.657000+00:00", "date_updated": "2022-11-08T17:15:11.665000+00:00", "email_ids": ["acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg"], "id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "latest_normalized_subject": "Close (Example Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 2, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T17:15:11.668000", "date_updated": "2022-11-08T17:15:11.668000", "id": "ev_0DXX54vCFZGg7TSZWdyWWS", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:12:07.626000+00:00", "date_created": "2022-11-08T17:12:07.626000+00:00", "date_updated": "2022-11-08T17:12:12.757000+00:00", "n_emails": 1}, "request_id": null, "user_id": null}, "emitted_at": 1670413474267} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T17:15:11.656000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Nick,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we", "body_text": "Hi Nick, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:15:11.656000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T17:15:11.656000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Nick Persico "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:15:11.659000", "date_updated": "2022-11-08T17:15:11.659000", "id": "ev_3LYulYARmPYmPDqKG8A5B9", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_Jo5nNA02HebzixdJdqbsqtb2v5JAe5l682DwN84Lsq3", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474269} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:12:07.625000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Customer,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you wha", "body_text": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:12:07.975000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:12:07.625000+00:00", "date_updated": "2022-11-08T17:12:12.687000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:12:08 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792752819.46698.4592611849180210253@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792752819.46698.4592611849180210253@smtpgw.close.com>", "<166792752819.46698.4097549043104142028@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.10", "opened_at": "2022-11-08T17:12:11.815000+00:00", "opened_by": "Customer Success Team ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.249.92.10", "opened_at": "2022-11-08T17:12:12.687000+00:00", "opened_by": "Customer Success Team ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}], "opens_summary": "Opened by Customer Success Team (2 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_06TCoNKHiRvgz5eajOG5iM", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Customer Success Team "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:12:11.817000", "date_updated": "2022-11-08T17:12:12.689000", "id": "ev_7HYy5uRj3TXiKWmRKIaXzI", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg/J9TTCACNTB.png"}, "object_id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T17:12:09.686000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_70baVrXmXQG4WW9pa9TIvV", "user_id": null}, "emitted_at": 1670413474271} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T17:12:07.625391", "date_created": "2022-11-08T17:12:07.625391", "date_sent": "2022-11-08T17:12:07.625391", "date_updated": "2022-11-08T17:12:09.875391", "email_id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "id": "subhis_7mdDTENOokFN5SO1ETDlXg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": "<166792752819.46698.4592611849180210253@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_06TCoNKHiRvgz5eajOG5iM", "status": "completed", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T17:12:09.875000", "date_updated": "2022-11-08T17:12:09.875000", "id": "ev_0d3cOwDjl3Vo0Y7tt6LWm3", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_7mdDTENOokFN5SO1ETDlXg", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T17:12:08.165396", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474273} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "updated_by", "updated_by_name"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T17:12:07.626000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:12:07.626000+00:00", "date_updated": "2022-11-08T17:12:09.741000+00:00", "email_ids": ["acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg"], "id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "latest_normalized_subject": "Close (Example Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T17:12:09.743000", "date_updated": "2022-11-08T17:12:09.743000", "id": "ev_0y8Ir7d0tmBinSbHiwjHnW", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:12:07.976000+00:00", "date_created": "2022-11-08T17:12:07.976000+00:00", "date_updated": "2022-11-08T17:12:07.982000+00:00", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474275} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T17:12:07.625000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Customer,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you wha", "body_text": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:12:07.975000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:12:07.625000+00:00", "date_updated": "2022-11-08T17:12:09.686000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:12:08 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792752819.46698.4592611849180210253@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792752819.46698.4592611849180210253@smtpgw.close.com>", "<166792752819.46698.4097549043104142028@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_06TCoNKHiRvgz5eajOG5iM", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Customer Success Team "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:12:09.689000", "date_updated": "2022-11-08T17:12:09.689000", "id": "ev_2TrQ96VLmBwJXI3xHsV8Q5", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T17:12:07.975000+00:00", "date_sent": null, "date_updated": "2022-11-08T17:12:07.988000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474278} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T17:12:07.625000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Customer,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you wha", "body_text": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:12:07.975000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T17:12:07.625000+00:00", "date_updated": "2022-11-08T17:12:09.686000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 17:12:08 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792752819.46698.4592611849180210253@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792752819.46698.4592611849180210253@smtpgw.close.com>", "<166792752819.46698.4097549043104142028@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_06TCoNKHiRvgz5eajOG5iM", "status": "sent", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Customer Success Team "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:12:09.689000", "date_updated": "2022-11-08T17:12:09.689000", "id": "ev_1ILjrMMmwkTKAyQvlF57BT", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474280} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T17:12:07.625391", "date_sent": null, "date_updated": "2022-11-08T17:12:08.165396", "email_id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "id": "subhis_7mdDTENOokFN5SO1ETDlXg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_06TCoNKHiRvgz5eajOG5iM", "status": "pending", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T17:12:08.165000", "date_updated": "2022-11-08T17:12:08.165000", "id": "ev_1hvS0FWPXU0n5OVJt5FDbI", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_7mdDTENOokFN5SO1ETDlXg", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474282} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "success@close.com", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:52.688271", "date_updated": "2022-11-08T17:12:08.155030", "id": "sub_06TCoNKHiRvgz5eajOG5iM", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T17:12:07.625391", "updated_by_id": null}, "date_created": "2022-11-08T17:12:08.155000", "date_updated": "2022-11-08T17:12:08.155000", "id": "ev_3UJET9KEbSKHpau2xrVYZo", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_06TCoNKHiRvgz5eajOG5iM", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:53.286096", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474284} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T17:12:07.975000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Customer,

I'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you wha", "body_text": "Hi Customer, \n \nI'm Jean with Airbyte. We help companies in the Software space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Close\n(Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:12:07.975000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T17:12:07.988000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Close (Example\u00a0Lead) + Airbyte", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Close (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "to": ["Customer Success Team "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T17:12:07.991000", "date_updated": "2022-11-08T17:12:07.991000", "id": "ev_5wDHbDdnVWH8Td0nAf2kOe", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474286} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T17:12:07.976000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T17:12:07.976000+00:00", "date_updated": "2022-11-08T17:12:07.982000+00:00", "email_ids": ["acti_FmGmN7lMl7P6eQiHZevdkYF9tOH1aTduDFkmEylHocg"], "id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "latest_normalized_subject": "Close (Example Lead) + Airbyte", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T17:12:07.986000", "date_updated": "2022-11-08T17:12:07.986000", "id": "ev_7n0qBkzOZIWHLtuTpiuGjL", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_J1LyrEyYijj0iVPLaf5NfGLbyoRvRxdSWWAuMmHtD29", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474289} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:48:47.166000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Support,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- T", "body_text": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:48:47.552000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:48:47.166000+00:00", "date_updated": "2022-11-08T16:50:41.545000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:48:48 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792612773.32060.15386565426548563880@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "support@close.com", "name": "Support"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792612773.32060.15386565426548563880@smtpgw.close.com>", "<166792612773.32060.13475180684302654892@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T16:50:41.545000+00:00", "opened_by": "Support ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}], "opens_summary": "Opened by Support (2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_7Zv78mWCJuul1Ipd4EDE32", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Support "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:50:41.548000", "date_updated": "2022-11-08T16:50:41.548000", "id": "ev_6giGv4g4ciOT3eiK7Revrd", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc/aK8bDZwXng.png"}, "object_id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:48:49.089000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_2N89O0COU6NHnJhJlqyuT3", "user_id": null}, "emitted_at": 1670413474291} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T16:48:47.166705", "date_created": "2022-11-08T16:48:47.166705", "date_sent": "2022-11-08T16:48:47.166705", "date_updated": "2022-11-08T16:48:49.272489", "email_id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "id": "subhis_0VwXVAVC42pDcl8ibQ3vk2", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": "<166792612773.32060.15386565426548563880@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_7Zv78mWCJuul1Ipd4EDE32", "status": "completed", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:48:49.272000", "date_updated": "2022-11-08T16:48:49.272000", "id": "ev_6ya54btVk3bxynsVad0Ip9", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_0VwXVAVC42pDcl8ibQ3vk2", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T16:48:47.712055", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474293} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:48:47.167000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:48:47.167000+00:00", "date_updated": "2022-11-08T16:48:49.132000+00:00", "email_ids": ["acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz"], "id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 4, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:48:49.136000", "date_updated": "2022-11-08T16:48:49.136000", "id": "ev_18WcY5ZzDnAXToXFbX0I7M", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:48:47.553000+00:00", "date_created": "2022-11-08T16:48:47.553000+00:00", "date_updated": "2022-11-08T16:48:47.561000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474295} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:48:47.166000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Support,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- T", "body_text": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:48:47.552000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:48:47.166000+00:00", "date_updated": "2022-11-08T16:48:49.089000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:48:48 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792612773.32060.15386565426548563880@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "support@close.com", "name": "Support"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792612773.32060.15386565426548563880@smtpgw.close.com>", "<166792612773.32060.13475180684302654892@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_7Zv78mWCJuul1Ipd4EDE32", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Support "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:48:49.092000", "date_updated": "2022-11-08T16:48:49.092000", "id": "ev_6zzz5yPzSKyTBPTGUx2Nuf", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:48:47.552000+00:00", "date_sent": null, "date_updated": "2022-11-08T16:48:47.552000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "support@close.com", "name": "Support"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474297} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:48:47.166000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Support,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- T", "body_text": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:48:47.552000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:48:47.166000+00:00", "date_updated": "2022-11-08T16:48:49.089000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:48:48 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792612773.32060.15386565426548563880@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "support@close.com", "name": "Support"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792612773.32060.15386565426548563880@smtpgw.close.com>", "<166792612773.32060.13475180684302654892@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_7Zv78mWCJuul1Ipd4EDE32", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Support "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:48:49.092000", "date_updated": "2022-11-08T16:48:49.092000", "id": "ev_4VVLRFxZlq4vMJsEb6ezm6", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474299} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T16:48:47.166705", "date_sent": null, "date_updated": "2022-11-08T16:48:47.712055", "email_id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "id": "subhis_0VwXVAVC42pDcl8ibQ3vk2", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_7Zv78mWCJuul1Ipd4EDE32", "status": "pending", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:48:47.712000", "date_updated": "2022-11-08T16:48:47.712000", "id": "ev_3j0enF2bYiFmRaQwsG5Cxq", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_0VwXVAVC42pDcl8ibQ3vk2", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474302} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": [], "contact_email": "support@close.com", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:12.582772", "date_updated": "2022-11-08T16:48:47.699257", "id": "sub_7Zv78mWCJuul1Ipd4EDE32", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T16:48:47.166705", "updated_by_id": null}, "date_created": "2022-11-08T16:48:47.699000", "date_updated": "2022-11-08T16:48:47.699000", "id": "ev_1Dg85plRFrZdX0n0dZBTOJ", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_7Zv78mWCJuul1Ipd4EDE32", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:12.925063", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474304} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "n_emails"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:48:47.553000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:48:47.553000+00:00", "date_updated": "2022-11-08T16:48:47.561000+00:00", "email_ids": ["acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz"], "id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 4, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:48:47.564000", "date_updated": "2022-11-08T16:48:47.564000", "id": "ev_16uPFmuzpYhe4LLEzIJ4K8", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:36:07.227000+00:00", "date_created": "2022-11-08T16:36:07.227000+00:00", "date_updated": "2022-11-08T16:36:16.315000+00:00", "n_emails": 3}, "request_id": null, "user_id": null}, "emitted_at": 1670413474306} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:48:47.552000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Support,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- T", "body_text": "Hi Support, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:48:47.552000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T16:48:47.552000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "support@close.com", "name": "Support"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Support "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:48:47.555000", "date_updated": "2022-11-08T16:48:47.555000", "id": "ev_5lUkf0VlGJPJI1oPeJMqar", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_u6v6F3otM95hwbDFmIwzakF24SbSkZsliERI3Y7e9Mc", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474308} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:36:07.226000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:36:07.646000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:36:07.226000+00:00", "date_updated": "2022-11-08T16:36:16.238000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:36:08 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792536780.39994.6476676108875520271@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792536780.39994.6476676108875520271@smtpgw.close.com>", "<166792536780.39994.10624245342771321646@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T16:36:14.654000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}, {"ip_address": "66.102.8.136", "opened_at": "2022-11-08T16:36:16.238000+00:00", "opened_by": "Steli Efti ", "user_agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)"}], "opens_summary": "Opened by Steli Efti (2 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:36:14.657000", "date_updated": "2022-11-08T16:36:16.240000", "id": "ev_6eeF51E9aMLPPADqtlgGYj", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y/dZva3CP7tI.png"}, "object_id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:36:09.202000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_6gWYeCXmXkFsXy1ig1YdVZ", "user_id": null}, "emitted_at": 1670413474310} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T16:36:07.226556", "date_created": "2022-11-08T16:36:07.226556", "date_sent": "2022-11-08T16:36:07.226556", "date_updated": "2022-11-08T16:36:09.406694", "email_id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "id": "subhis_0j1l5Rhq7YgbuHGj692BTm", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": "<166792536780.39994.6476676108875520271@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "status": "completed", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:36:09.406000", "date_updated": "2022-11-08T16:36:09.406000", "id": "ev_5CEpH81ag91IuuC7hk3W5q", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_0j1l5Rhq7YgbuHGj692BTm", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T16:36:07.781746", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474313} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:36:07.227000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:36:07.227000+00:00", "date_updated": "2022-11-08T16:36:09.264000+00:00", "email_ids": ["acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz"], "id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 3, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:36:09.267000", "date_updated": "2022-11-08T16:36:09.267000", "id": "ev_1zKZ8CnKAo7DaoPwMlzV9Y", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:36:07.647000+00:00", "date_created": "2022-11-08T16:36:07.647000+00:00", "date_updated": "2022-11-08T16:36:07.657000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474315} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:36:07.226000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:36:07.646000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:36:07.226000+00:00", "date_updated": "2022-11-08T16:36:09.202000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:36:08 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792536780.39994.6476676108875520271@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792536780.39994.6476676108875520271@smtpgw.close.com>", "<166792536780.39994.10624245342771321646@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:36:09.205000", "date_updated": "2022-11-08T16:36:09.205000", "id": "ev_6PAPeAKW1NQyloGKjU2LRW", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:36:07.646000+00:00", "date_sent": null, "date_updated": "2022-11-08T16:36:07.646000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474317} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:36:07.226000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:36:07.646000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:36:07.226000+00:00", "date_updated": "2022-11-08T16:36:09.202000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:36:08 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792536780.39994.6476676108875520271@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792536780.39994.6476676108875520271@smtpgw.close.com>", "<166792536780.39994.10624245342771321646@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Steli Efti "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:36:09.205000", "date_updated": "2022-11-08T16:36:09.205000", "id": "ev_69QJ3ImrWPEE06yYd7y945", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413474319} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T16:36:07.226556", "date_sent": null, "date_updated": "2022-11-08T16:36:07.781746", "email_id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "id": "subhis_0j1l5Rhq7YgbuHGj692BTm", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "status": "pending", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:36:07.781000", "date_updated": "2022-11-08T16:36:07.781000", "id": "ev_6ltRFvfr7jBbpAVItt7BRC", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_0j1l5Rhq7YgbuHGj692BTm", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474321} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": [], "contact_email": "sales@close.com", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:14.589854", "date_updated": "2022-11-08T16:36:07.768798", "id": "sub_3AChiei0PuAIJ1X0OWnWNR", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T16:36:07.226556", "updated_by_id": null}, "date_created": "2022-11-08T16:36:07.768000", "date_updated": "2022-11-08T16:36:07.768000", "id": "ev_4fxYjvtIgvkhoGMQ2lVjXO", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:15.178861", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474323} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "n_emails"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:36:07.647000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:36:07.647000+00:00", "date_updated": "2022-11-08T16:36:07.657000+00:00", "email_ids": ["acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz"], "id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 3, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:36:07.660000", "date_updated": "2022-11-08T16:36:07.660000", "id": "ev_2yFf74YX6xeprge5z8MOVk", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:24:31.195000+00:00", "date_created": "2022-11-08T16:24:31.195000+00:00", "date_updated": "2022-11-08T16:24:37.497000+00:00", "n_emails": 2}, "request_id": null, "user_id": null}, "emitted_at": 1670413474990} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:36:07.646000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Steli,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thu", "body_text": "Hi Steli, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:36:07.646000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T16:36:07.646000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "sales@close.com", "name": "Steli Efti"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Steli Efti "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:36:07.650000", "date_updated": "2022-11-08T16:36:07.650000", "id": "ev_16StE4izK0uwp6y8j4wj5g", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_513pRrBSucsLbbv9XPlWIa0II9deTHWHZmPlYNOni9y", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413474992} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_created", "date_updated", "emails", "is_complete", "is_new"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mai", "cleared_followups": [], "contact_id": null, "created_by": null, "created_by_name": null, "date": "2022-11-08T15:44:23.001000+00:00", "date_created": "2022-11-08T15:44:23.001000+00:00", "date_updated": "2022-11-08T16:28:55.890000+00:00", "emails": [], "id": "noti_U722qGVxvXSd1AP7Cs2ygzun3Vm0tmfKOv1dSt2Itw0", "is_complete": true, "is_new": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Delivery Status Notification (Failure)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-08T16:28:55.892000", "date_updated": "2022-11-08T16:28:55.892000", "id": "ev_0MXTGaHKtmUeC2ooB3UMDg", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "noti_U722qGVxvXSd1AP7Cs2ygzun3Vm0tmfKOv1dSt2Itw0", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-08T12:56:55+00:00", "date_created": "2022-11-08T12:56:55+00:00", "date_updated": "2022-11-08T13:00:57.869000+00:00", "emails": ["acti_Yc8SKxsCvKYEdmrOElcfbI4TeWAutmDsSG7mmHigzE8"], "is_complete": false, "is_new": true}, "request_id": null, "user_id": null}, "emitted_at": 1670413474994} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_created", "date_updated", "emails", "is_complete", "is_new"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "cleared_followups": [], "contact_id": null, "created_by": null, "created_by_name": null, "date": "2022-11-08T16:09:09.001000+00:00", "date_created": "2022-11-08T16:09:09.001000+00:00", "date_updated": "2022-11-08T16:28:55.751000+00:00", "emails": [], "id": "noti_9IHsSYqeUsxtZHI3umO2tpFpCCs5lou3KuMsVxmSKMV", "is_complete": true, "is_new": false, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "lead_name": "Bluth Company (Example\u00a0Lead)", "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Delivery Status Notification (Failure)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-08T16:28:55.753000", "date_updated": "2022-11-08T16:28:55.753000", "id": "ev_6cmezMZ1MaBDQ8HmOd81iu", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "noti_9IHsSYqeUsxtZHI3umO2tpFpCCs5lou3KuMsVxmSKMV", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-08T15:21:52+00:00", "date_created": "2022-11-08T15:21:52+00:00", "date_updated": "2022-11-08T15:22:03.794000+00:00", "emails": ["acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs"], "is_complete": false, "is_new": true}, "request_id": null, "user_id": null}, "emitted_at": 1670413474996} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "paused_by_activity_id", "status", "status_reason", "updated_by_id"], "data": {"calls_assigned_to": [], "contact_email": "thedarkknight@close.com", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:15.902085", "date_updated": "2022-11-08T16:28:55.684374", "id": "sub_7mCfXm4Y3eZajJp0rkjwFU", "initial_email_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": "acti_4FqtK5fUFc4M3CvT2mCEGHnXww1fWEJkRckW9WrIdKg", "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "error", "status_reason": "email-bounced", "step_last_processed_at": null, "updated_by_id": null}, "date_created": "2022-11-08T16:28:55.684000", "date_updated": "2022-11-08T16:28:55.684000", "id": "ev_3dqP8VfVQdHUS8PSyBO5xD", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "sub_7mCfXm4Y3eZajJp0rkjwFU", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:16.236687", "paused_by_activity_id": null, "status": "active", "status_reason": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474998} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "paused_by_activity_id", "status", "status_reason", "updated_by_id"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "thedarkknight@close.com", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:46.583319", "date_updated": "2022-11-08T16:28:55.680946", "id": "sub_5MuKAZDXfR1pHQL0xGBUp3", "initial_email_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": "acti_4FqtK5fUFc4M3CvT2mCEGHnXww1fWEJkRckW9WrIdKg", "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "error", "status_reason": "email-bounced", "step_last_processed_at": null, "updated_by_id": null}, "date_created": "2022-11-08T16:28:55.680000", "date_updated": "2022-11-08T16:28:55.680000", "id": "ev_03TaXtLXsHumTdgl8WRF2C", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "sub_5MuKAZDXfR1pHQL0xGBUp3", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:47.195807", "paused_by_activity_id": null, "status": "active", "status_reason": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413474999} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "paused_by_activity_id", "status", "status_reason", "updated_by_id"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "tobiasfunke@close.com", "contact_id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:49.320380", "date_updated": "2022-11-08T16:28:55.576648", "id": "sub_55pcJcrKsTL3fUX3ZJ3rw1", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": "acti_kInKkIusbEQTcNwu982oG2ncXoGXOckJbYy1d6RgHGx", "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "error", "status_reason": "email-bounced", "step_last_processed_at": null, "updated_by_id": null}, "date_created": "2022-11-08T16:28:55.576000", "date_updated": "2022-11-08T16:28:55.576000", "id": "ev_3n01bDsKWUDxh2duWFMkfz", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "sub_55pcJcrKsTL3fUX3ZJ3rw1", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:49.637227", "paused_by_activity_id": null, "status": "active", "status_reason": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475001} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "paused_by_activity_id", "status", "status_reason"], "data": {"calls_assigned_to": [], "contact_email": "tobiasfunke@close.com", "contact_id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:11.239696", "date_updated": "2022-11-08T16:28:55.571574", "id": "sub_1rgSspOohLocAaucazbFbB", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": "acti_kInKkIusbEQTcNwu982oG2ncXoGXOckJbYy1d6RgHGx", "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "error", "status_reason": "email-bounced", "step_last_processed_at": "2022-11-08T16:09:03.809833", "updated_by_id": null}, "date_created": "2022-11-08T16:28:55.571000", "date_updated": "2022-11-08T16:28:55.571000", "id": "ev_7UI0dlEhpbMCTJyvwSscZG", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "sub_1rgSspOohLocAaucazbFbB", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:09:04.295282", "paused_by_activity_id": null, "status": "active", "status_reason": null}, "request_id": null, "user_id": null}, "emitted_at": 1670413475003} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T16:28:55.426000", "date_updated": "2022-11-08T16:28:55.426000", "id": "ev_4gddQATuvMiYtDor9BPhFM", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:44:17.804000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:44:17.804000+00:00", "date_updated": "2022-11-08T15:44:19.328000+00:00", "email_ids": ["acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs"], "id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "latest_normalized_subject": "(no subject)", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "request_id": null, "user_id": null}, "emitted_at": 1670413475005} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "latest_normalized_subject", "n_emails", "participants"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:44:23.001000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:44:23.001000+00:00", "date_updated": "2022-11-08T16:28:55.357000+00:00", "email_ids": ["acti_4FqtK5fUFc4M3CvT2mCEGHnXww1fWEJkRckW9WrIdKg", "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "acti_Yc8SKxsCvKYEdmrOElcfbI4TeWAutmDsSG7mmHigzE8", "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe"], "id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "latest_normalized_subject": "Delivery Status Notification (Failure)", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 4, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:28:55.360000", "date_updated": "2022-11-08T16:28:55.360000", "id": "ev_1VLUPK0wRU07MW6UboSsGU", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T12:56:55.001000+00:00", "date_created": "2022-11-08T12:56:55.001000+00:00", "date_updated": "2022-11-08T15:43:38.504000+00:00", "latest_normalized_subject": "Delivery Status Notification (Failure)", "n_emails": 2, "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "request_id": null, "user_id": null}, "emitted_at": 1670413475007} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T15:44:23+00:00", "attachments": [{"content_id": "", "content_type": "image/png", "filename": "icon.png", "size": 1450}], "bcc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: \"Jean Lafleur\" <iryna.grankova@globallogic.com>
\nSubject: (no subject)
\nDate: Tue, 08 Nov 2022 15:44:18 +0000
\nTo: thedarkknight@close.com
\n
\nTest\"\"

", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.co", "body_text": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.com/s/x_0dCzpzoxUqDBA5f4CcrT?domain=support.google.com\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://protect-us.mimecast.com/s/x_0dCzpzoxUqDBA5f4CcrT?domain=support.google.com\nFrom: \"Jean Lafleur\" \nSubject: (no subject)\nDate: Tue, 08 Nov 2022 15:44:18 +0000\nTo: thedarkknight@close.com\n\nTest", "bulk_email_action_id": null, "cc": [], "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:44:23+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T16:28:55.347000+00:00", "direction": "incoming", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 07:44:23 -0800 (PST)", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "in_reply_to": "<166792225784.2629.13990873364570888607@smtpgw.close.com>", "is_autoreply": true, "message_id": "<636a7957.050a0220.76c16.8d69.GMR@mx.google.com>", "reply_to": [], "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "subject": "Delivery Status Notification (Failure)", "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_4FqtK5fUFc4M3CvT2mCEGHnXww1fWEJkRckW9WrIdKg", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<636a7957.050a0220.76c16.8d69.GMR@mx.google.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": ["<166792225784.2629.12825104744076060180@smtpgw.close.com>", "<166792225784.2629.13990873364570888607@smtpgw.close.com>"], "send_as_id": null, "send_attempts": [], "sender": "Mail Delivery Subsystem ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Delivery Status Notification (Failure)", "template_id": null, "template_name": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["iryna.grankova@globallogic.com"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:28:55.349000", "date_updated": "2022-11-08T16:28:55.349000", "id": "ev_6UZU2EL6GMk8Bpxfld98ir", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_4FqtK5fUFc4M3CvT2mCEGHnXww1fWEJkRckW9WrIdKg", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475009} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "thread_id"], "data": {"_type": "Email", "activity_at": "2022-11-08T15:44:17.803000+00:00", "attachments": [], "bcc": [], "body_html": "Test", "body_preview": "Test", "body_text": "Test", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.819000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:44:17.803000+00:00", "date_updated": "2022-11-08T16:28:55.242000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:44:18 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792225784.2629.13990873364570888607@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "(no subject)", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166792225784.2629.13990873364570888607@smtpgw.close.com>", "<166792225784.2629.12825104744076060180@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "(no subject)", "template_id": null, "template_name": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:28:55.247000", "date_updated": "2022-11-08T16:28:55.247000", "id": "ev_3cDgUz9IAiTRmA4H5N6d94", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:44:19.299000+00:00", "thread_id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475011} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "object_id"], "data": {"_type": "email_followup", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "Test", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-15", "date_created": "2022-11-08T15:44:05.221000+00:00", "date_updated": "2022-11-08T16:28:54.794000+00:00", "email_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "id": "noti_3I4QaKqYel0nzGyKT8mpDKy4q2KKu4IuIZZ3Gb7gs4x", "is_complete": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "(no subject)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": null}, "date_created": "2022-11-08T16:28:54.817000", "date_updated": "2022-11-08T16:28:54.817000", "id": "ev_4ouBbOZv2hNF7fH2eIos9e", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "noti_3I4QaKqYel0nzGyKT8mpDKy4q2KKu4IuIZZ3Gb7gs4x", "object_type": "task.email_followup", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:44:05.221000+00:00", "object_id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475013} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "latest_normalized_subject", "n_emails", "participants"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:09:09.001000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T16:09:09.001000+00:00", "date_updated": "2022-11-08T16:28:54.150000+00:00", "email_ids": ["acti_kInKkIusbEQTcNwu982oG2ncXoGXOckJbYy1d6RgHGx", "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x"], "id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "latest_normalized_subject": "Delivery Status Notification (Failure)", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 6, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:28:54.153000", "date_updated": "2022-11-08T16:28:54.153000", "id": "ev_6J3LFtbmhd7sXRkKN3xzGK", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:09:03.810000+00:00", "date_created": "2022-11-08T16:09:03.810000+00:00", "date_updated": "2022-11-08T16:09:05.825000+00:00", "latest_normalized_subject": "Airbyte Follow-up", "n_emails": 5, "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}, {"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "request_id": null, "user_id": null}, "emitted_at": 1670413475015} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:09:09+00:00", "attachments": [{"content_id": "", "content_type": "image/png", "filename": "icon.png", "size": 1450}], "bcc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to tobiasfunke@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: \"Jean Lafleur\" <iryna.grankova@globallogic.com>
\nSubject: Airbyte Follow-up
\nDate: Tue, 08 Nov 2022 16:09:04 +0000
\nTo: Tobias F\u00fcnke <tobiasfunke@close.com>
\n
\nHi Tobias,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
\"\"

", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to tobiasfunke@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.com/", "body_text": "\n** Address not found **\n\nYour message wasn't delivered to tobiasfunke@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://protect-us.mimecast.com/s/vIO8C0R7BXCBvxZ9fwcWRl?domain=support.google.com\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://protect-us.mimecast.com/s/vIO8C0R7BXCBvxZ9fwcWRl?domain=support.google.com\nFrom: \"Jean Lafleur\" \nSubject: Airbyte Follow-up\nDate: Tue, 08 Nov 2022 16:09:04 +0000\nTo: Tobias F\u00fcnke \n\nHi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:09:09+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T16:28:54.140000+00:00", "direction": "incoming", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 08:09:09 -0800 (PST)", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "in_reply_to": "<166792374433.22448.16558415745556798661@smtpgw.close.com>", "is_autoreply": true, "message_id": "<636a7f25.c80a0220.659b6.8bba.GMR@mx.google.com>", "reply_to": [], "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "subject": "Delivery Status Notification (Failure)", "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_kInKkIusbEQTcNwu982oG2ncXoGXOckJbYy1d6RgHGx", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<636a7f25.c80a0220.659b6.8bba.GMR@mx.google.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": ["<166792374433.22448.17907165931371313011@smtpgw.close.com>", "<166792374433.22448.16558415745556798661@smtpgw.close.com>"], "send_as_id": null, "send_attempts": [], "sender": "Mail Delivery Subsystem ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Delivery Status Notification (Failure)", "template_id": null, "template_name": null, "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["iryna.grankova@globallogic.com"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:28:54.142000", "date_updated": "2022-11-08T16:28:54.142000", "id": "ev_73NAlUi625ajEQ41FPwDvq", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_kInKkIusbEQTcNwu982oG2ncXoGXOckJbYy1d6RgHGx", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475017} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:24:31.194000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Customer,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- ", "body_text": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:24:31.650000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:24:31.194000+00:00", "date_updated": "2022-11-08T16:24:37.393000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:24:32 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792467183.28936.13663569799747553498@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792467183.28936.13663569799747553498@smtpgw.close.com>", "<166792467183.28936.4497117513938895080@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.22", "opened_at": "2022-11-08T16:24:37.393000+00:00", "opened_by": "Customer Success Team ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}], "opens_summary": "Opened by Customer Success Team (2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_174GiA85Ui8g1OuQUrzdWe", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Customer Success Team "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:24:37.395000", "date_updated": "2022-11-08T16:24:37.395000", "id": "ev_1QRoIMQRKNZ3VuK9thVezh", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "GET", "request_path": "/t/bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ/J9TTCACNTB.png"}, "object_id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T16:24:33.205000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_2Ovkbtk55GowkLCbAtRzXi", "user_id": null}, "emitted_at": 1670413475019} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T16:24:31.194602", "date_created": "2022-11-08T16:24:31.194602", "date_sent": "2022-11-08T16:24:31.194602", "date_updated": "2022-11-08T16:24:33.401673", "email_id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "id": "subhis_5sPb9CWgp0vNWMM2x8VDYt", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": "<166792467183.28936.13663569799747553498@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_174GiA85Ui8g1OuQUrzdWe", "status": "completed", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:24:33.401000", "date_updated": "2022-11-08T16:24:33.401000", "id": "ev_1WTfdJFTi0jMX9oFSxQ8js", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_5sPb9CWgp0vNWMM2x8VDYt", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T16:24:31.810164", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475021} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:24:31.195000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:24:31.195000+00:00", "date_updated": "2022-11-08T16:24:33.253000+00:00", "email_ids": ["acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz"], "id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 2, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:24:33.256000", "date_updated": "2022-11-08T16:24:33.256000", "id": "ev_6x2yRaZ2N3bz7O9VWg1OfD", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:24:31.651000+00:00", "date_created": "2022-11-08T16:24:31.651000+00:00", "date_updated": "2022-11-08T16:24:31.662000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475023} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:24:31.194000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Customer,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- ", "body_text": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:24:31.650000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:24:31.194000+00:00", "date_updated": "2022-11-08T16:24:33.205000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:24:32 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792467183.28936.13663569799747553498@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792467183.28936.13663569799747553498@smtpgw.close.com>", "<166792467183.28936.4497117513938895080@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_174GiA85Ui8g1OuQUrzdWe", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Customer Success Team "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:24:33.209000", "date_updated": "2022-11-08T16:24:33.209000", "id": "ev_4hJDAIYxzqpJbceoiTugxF", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:24:31.650000+00:00", "date_sent": null, "date_updated": "2022-11-08T16:24:31.650000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475024} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:24:31.194000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Customer,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- ", "body_text": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:24:31.650000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:24:31.194000+00:00", "date_updated": "2022-11-08T16:24:33.205000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:24:32 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792467183.28936.13663569799747553498@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792467183.28936.13663569799747553498@smtpgw.close.com>", "<166792467183.28936.4497117513938895080@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_174GiA85Ui8g1OuQUrzdWe", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Customer Success Team "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:24:33.209000", "date_updated": "2022-11-08T16:24:33.209000", "id": "ev_2zonxxPsLSnXQWXbz1meBr", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475027} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T16:24:31.194602", "date_sent": null, "date_updated": "2022-11-08T16:24:31.810164", "email_id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "id": "subhis_5sPb9CWgp0vNWMM2x8VDYt", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_174GiA85Ui8g1OuQUrzdWe", "status": "pending", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:24:31.810000", "date_updated": "2022-11-08T16:24:31.810000", "id": "ev_71TqevQnGVOYmBe00zH4ah", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_5sPb9CWgp0vNWMM2x8VDYt", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475028} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": [], "contact_email": "success@close.com", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:06.399661", "date_updated": "2022-11-08T16:24:31.797778", "id": "sub_174GiA85Ui8g1OuQUrzdWe", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T16:24:31.194602", "updated_by_id": null}, "date_created": "2022-11-08T16:24:31.797000", "date_updated": "2022-11-08T16:24:31.797000", "id": "ev_2Oh82N6SKFk11R0Wd78abz", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_174GiA85Ui8g1OuQUrzdWe", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:07.011108", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475030} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "n_emails"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:24:31.651000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:24:31.651000+00:00", "date_updated": "2022-11-08T16:24:31.662000+00:00", "email_ids": ["acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz"], "id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 2, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:24:31.665000", "date_updated": "2022-11-08T16:24:31.665000", "id": "ev_0n9iXXTLQj8BB665NhN0Q9", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:23:04.324000+00:00", "date_created": "2022-11-08T16:23:04.324000+00:00", "date_updated": "2022-11-08T16:23:06.506000+00:00", "n_emails": 1}, "request_id": null, "user_id": null}, "emitted_at": 1670413475032} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:24:31.650000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Customer,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- ", "body_text": "Hi Customer, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:24:31.650000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T16:24:31.650000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "success@close.com", "name": "Customer Success Team"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Customer Success Team "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:24:31.653000", "date_updated": "2022-11-08T16:24:31.653000", "id": "ev_4gKA8prx4PDrzTJuJsA2sR", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_bC5SD6KS0DpDnpa8rCOu65fhlVw2lotWPLSKgHvdZgZ", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475034} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T16:23:04.323897", "date_created": "2022-11-08T16:23:04.323897", "date_sent": "2022-11-08T16:23:04.323897", "date_updated": "2022-11-08T16:23:06.630750", "email_id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "id": "subhis_0iVz2Ot4TmD6Mjwkb5QrDN", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": "<166792458488.29477.5187137325155036854@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_3J812U6VNcZBmBDEJ1iIdX", "status": "completed", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:23:06.630000", "date_updated": "2022-11-08T16:23:06.630000", "id": "ev_0TTFMXot6D5ZYjIT99NQe2", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_0iVz2Ot4TmD6Mjwkb5QrDN", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T16:23:04.861765", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475036} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "updated_by", "updated_by_name"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:23:04.324000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:23:04.324000+00:00", "date_updated": "2022-11-08T16:23:06.506000+00:00", "email_ids": ["acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz"], "id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:23:06.508000", "date_updated": "2022-11-08T16:23:06.508000", "id": "ev_5gjfM4BGuxHrRigS2PtOLN", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:23:04.669000+00:00", "date_created": "2022-11-08T16:23:04.669000+00:00", "date_updated": "2022-11-08T16:23:04.675000+00:00", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475038} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:23:04.323000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Nick,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur", "body_text": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:23:04.668000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:23:04.323000+00:00", "date_updated": "2022-11-08T16:23:06.464000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:23:05 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792458488.29477.5187137325155036854@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792458488.29477.5187137325155036854@smtpgw.close.com>", "<166792458488.29477.3151986449249141034@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_3J812U6VNcZBmBDEJ1iIdX", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Nick Persico "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:23:06.467000", "date_updated": "2022-11-08T16:23:06.467000", "id": "ev_1fnDX4091kEJ3HKdFzFjHT", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475040} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:23:04.323000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Nick,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur", "body_text": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:23:04.668000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:23:04.323000+00:00", "date_updated": "2022-11-08T16:23:06.464000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:23:05 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792458488.29477.5187137325155036854@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<166792458488.29477.5187137325155036854@smtpgw.close.com>", "<166792458488.29477.3151986449249141034@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_3J812U6VNcZBmBDEJ1iIdX", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Nick Persico "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:23:06.467000", "date_updated": "2022-11-08T16:23:06.467000", "id": "ev_1NO5opn8Bu5AKuC6v32LKh", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:23:04.668000+00:00", "date_sent": null, "date_updated": "2022-11-08T16:23:04.681000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475042} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T16:23:04.323897", "date_sent": null, "date_updated": "2022-11-08T16:23:04.861765", "email_id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "id": "subhis_0iVz2Ot4TmD6Mjwkb5QrDN", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_3J812U6VNcZBmBDEJ1iIdX", "status": "pending", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:23:04.861000", "date_updated": "2022-11-08T16:23:04.861000", "id": "ev_3BReWBNxOX7sOYuQ6UjDRp", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "subhis_0iVz2Ot4TmD6Mjwkb5QrDN", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475044} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": [], "contact_email": "nick@close.com", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:10.011072", "date_updated": "2022-11-08T16:23:04.849822", "id": "sub_3J812U6VNcZBmBDEJ1iIdX", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T16:23:04.323897", "updated_by_id": null}, "date_created": "2022-11-08T16:23:04.849000", "date_updated": "2022-11-08T16:23:04.849000", "id": "ev_2U0DlyQz8R1YY78GZwS4Nf", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "sub_3J812U6VNcZBmBDEJ1iIdX", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:10.277337", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475046} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:23:04.668000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Nick,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur", "body_text": "Hi Nick, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:23:04.668000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T16:23:04.681000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "nick@close.com", "name": "Nick Persico"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "to": ["Nick Persico "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:23:04.683000", "date_updated": "2022-11-08T16:23:04.683000", "id": "ev_5Hm0HvVcPN9qoBljYFY3yP", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475048} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:23:04.669000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:23:04.669000+00:00", "date_updated": "2022-11-08T16:23:04.675000+00:00", "email_ids": ["acti_oovua6AW0D3cf6dRsosnqKvAw7g2JzkRTswWk3YheSz"], "id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:23:04.679000", "date_updated": "2022-11-08T16:23:04.679000", "id": "ev_2p7qzPznTDMpvfY7BdGwvb", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_YGNt9KsbM0PoIHdhXP2vVbIh6AULyiCvS7eSxeRx3w2", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475050} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T16:09:03.809833", "date_created": "2022-11-08T16:09:03.809833", "date_sent": "2022-11-08T16:09:03.809833", "date_updated": "2022-11-08T16:09:05.964260", "email_id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "id": "subhis_0ddJQIfOdMAUV2cutTRRix", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_id": "<166792374433.22448.16558415745556798661@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1rgSspOohLocAaucazbFbB", "status": "completed", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:09:05.964000", "date_updated": "2022-11-08T16:09:05.964000", "id": "ev_3ozRho1kmuMvuNhBXsr4J8", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "subhis_0ddJQIfOdMAUV2cutTRRix", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T16:09:04.309526", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475052} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:09:03.810000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T16:09:03.810000+00:00", "date_updated": "2022-11-08T16:09:05.825000+00:00", "email_ids": ["acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x"], "id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 5, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}, {"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:09:05.828000", "date_updated": "2022-11-08T16:09:05.828000", "id": "ev_031aLeV9FSanN83ai4J1Yl", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:09:04.171000+00:00", "date_created": "2022-11-08T16:09:04.171000+00:00", "date_updated": "2022-11-08T16:09:04.179000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475053} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:09:03.809000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Tobias,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Th", "body_text": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:09:04.170000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:09:03.809000+00:00", "date_updated": "2022-11-08T16:09:05.758000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:09:04 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792374433.22448.16558415745556798661@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "tobiasfunke@close.com", "name": "Tobias F\u00fcnke"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<166792374433.22448.16558415745556798661@smtpgw.close.com>", "<166792374433.22448.17907165931371313011@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_1rgSspOohLocAaucazbFbB", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["Tobias F\u00fcnke "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:09:05.761000", "date_updated": "2022-11-08T16:09:05.761000", "id": "ev_7PF4gpz9BNP93g5rLMSVot", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475055} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T16:09:03.809000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Tobias,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Th", "body_text": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:09:04.170000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T16:09:03.809000+00:00", "date_updated": "2022-11-08T16:09:05.758000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 16:09:04 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792374433.22448.16558415745556798661@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "tobiasfunke@close.com", "name": "Tobias F\u00fcnke"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<166792374433.22448.16558415745556798661@smtpgw.close.com>", "<166792374433.22448.17907165931371313011@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sequence_name": "Sequence 2", "sequence_subscription_id": "sub_1rgSspOohLocAaucazbFbB", "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["Tobias F\u00fcnke "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:09:05.761000", "date_updated": "2022-11-08T16:09:05.761000", "id": "ev_1aLtMKZMTCeT3XcFodYGWa", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T16:09:04.170000+00:00", "date_sent": null, "date_updated": "2022-11-08T16:09:04.170000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "tobiasfunke@close.com", "name": "Tobias F\u00fcnke"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475057} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T16:09:03.809833", "date_sent": null, "date_updated": "2022-11-08T16:09:04.309526", "email_id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "id": "subhis_0ddJQIfOdMAUV2cutTRRix", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_1rgSspOohLocAaucazbFbB", "status": "pending", "step_id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "updated_by": null}, "date_created": "2022-11-08T16:09:04.309000", "date_updated": "2022-11-08T16:09:04.309000", "id": "ev_0BT0X6xU0px9RkzDzv3Tz5", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "subhis_0ddJQIfOdMAUV2cutTRRix", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475059} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": [], "contact_email": "tobiasfunke@close.com", "contact_id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:11.239696", "date_updated": "2022-11-08T16:09:04.295282", "id": "sub_1rgSspOohLocAaucazbFbB", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T16:09:03.809833", "updated_by_id": null}, "date_created": "2022-11-08T16:09:04.295000", "date_updated": "2022-11-08T16:09:04.295000", "id": "ev_6XP7kuStxL6ZrmPV7tdQPu", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "sub_1rgSspOohLocAaucazbFbB", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:11.536982", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475061} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "latest_normalized_subject", "n_emails", "participants"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T16:09:04.171000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T16:09:04.171000+00:00", "date_updated": "2022-11-08T16:09:04.179000+00:00", "email_ids": ["acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x"], "id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 5, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}, {"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T16:09:04.182000", "date_updated": "2022-11-08T16:09:04.182000", "id": "ev_22ZB5LmGvNNmoFaex6uiHp", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:21:52.001000+00:00", "date_created": "2022-11-08T15:21:52.001000+00:00", "date_updated": "2022-11-08T15:22:03.526000+00:00", "latest_normalized_subject": "Delivery Status Notification (Failure)", "n_emails": 4, "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "request_id": null, "user_id": null}, "emitted_at": 1670413475063} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T16:09:04.170000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Tobias,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Th", "body_text": "Hi Tobias, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T16:09:04.170000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T16:09:04.170000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "tobiasfunke@close.com", "name": "Tobias F\u00fcnke"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["Tobias F\u00fcnke "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T16:09:04.172000", "date_updated": "2022-11-08T16:09:04.172000", "id": "ev_7PMrH1uUyntFu03zEbfcGn", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_3XzsaHLl42CAYwO98zCzxA5h5SScscYmxqg856bFvdp", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475065} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:59:59.614000+00:00", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:59:38.497000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:59:59.614000+00:00", "date_updated": "2022-11-08T15:59:59.614000+00:00", "direction": "outbound", "error_message": null, "id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "", "text": "Test text message", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:59:59.619000", "date_updated": "2022-11-08T15:59:59.619000", "id": "ev_6XFmpMtGpLv2CPnKaLWVAX", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475067} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "status"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:59:59.614000+00:00", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:59:38.497000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:59:59.614000+00:00", "date_updated": "2022-11-08T15:59:59.614000+00:00", "direction": "outbound", "error_message": null, "id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "", "text": "Test text message", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:59:59.619000", "date_updated": "2022-11-08T15:59:59.619000", "id": "ev_2SOFS0QNi8eApjXpjigm2Y", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:59:38.497000+00:00", "date_sent": null, "date_updated": "2022-11-08T15:59:58.892000+00:00", "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475069} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:59:38.497000+00:00", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:59:38.497000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:59:58.892000+00:00", "direction": "outbound", "error_message": null, "id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "", "text": "Test text message", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:59:58.899000", "date_updated": "2022-11-08T15:59:58.899000", "id": "ev_2Cs8nuiDAAyyQ7a5TmZL8E", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-08T15:59:46.427000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475071} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "text"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:59:38.497000+00:00", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:59:38.497000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:59:46.427000+00:00", "direction": "outbound", "error_message": null, "id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "", "text": "Test text message", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:59:41.632000", "date_updated": "2022-11-08T15:59:46.428000", "id": "ev_2hN50QkPzxXKZ1uGOD8WFW", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj/"}, "object_id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:59:38.497000+00:00", "status": "draft", "text": ""}, "request_id": "req_3AycSNZykhQdyJovmSTg7Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475073} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:59:38.497000+00:00", "attachments": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:59:38.497000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:59:38.497000+00:00", "direction": "outbound", "error_message": null, "id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:59:38.499000", "date_updated": "2022-11-08T15:59:38.499000", "id": "ev_2FsqZQCrg4UlYOajlg3xAu", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_bYBEzC3oBNFwfPZwh5PfKCvbT3FrVLTuxxLZguRoFSj", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6LSZmJDQN0DdBji4w9VWFu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475075} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "phones"], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:54:42.381000+00:00", "date_updated": "2022-11-08T15:59:35.241000+00:00", "emails": [{"email": "irina.grankova@gmail.com", "type": "office"}], "id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "Iryna", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [{"phone": "+14156236785", "phone_formatted": "+1 415-623-6785", "type": "office"}], "title": "Test Lead", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T15:59:35.243000", "date_updated": "2022-11-08T15:59:35.243000", "id": "ev_2aW6f1B3Boxd45kcxhKZEJ", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/contact/cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP/"}, "object_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:58:50.257000+00:00", "phones": [{"phone": "+380636306253", "phone_formatted": "+380 63 630 6253", "type": "office"}]}, "request_id": "req_0NR3kFmM8easP7BdNjfGka", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475077} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:59:24.130000", "date_updated": "2022-11-08T15:59:24.130000", "id": "ev_4yBiA3l9yNU1hZFQCFmHG0", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "DELETE", "request_path": "/api/v1/contact/cont_iN8dRLv2oU62jXfkgPjetnQrGHTne4YGGfy8hL99iHC/"}, "object_id": "cont_iN8dRLv2oU62jXfkgPjetnQrGHTne4YGGfy8hL99iHC", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:59:12.211000+00:00", "date_updated": "2022-11-08T15:59:12.211000+00:00", "emails": [], "id": "cont_iN8dRLv2oU62jXfkgPjetnQrGHTne4YGGfy8hL99iHC", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [{"phone": "+14156236785", "phone_formatted": "+1 415-623-6785", "type": "office"}], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "request_id": "req_0GlUUpnIrC8WXpTKZNn99V", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475078} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["contact_ids", "date_updated"], "data": {"addresses": [], "contact_ids": ["cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:54:42.377000+00:00", "date_updated": "2022-11-08T15:59:24.111000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-08T15:59:24.113000", "date_updated": "2022-11-08T15:59:24.113000", "id": "ev_44OwC6nlLHdAWy2DfuxlIH", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "DELETE", "request_path": "/api/v1/contact/cont_iN8dRLv2oU62jXfkgPjetnQrGHTne4YGGfy8hL99iHC/"}, "object_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"contact_ids": ["cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cont_iN8dRLv2oU62jXfkgPjetnQrGHTne4YGGfy8hL99iHC"], "date_updated": "2022-11-08T15:59:12.219000+00:00"}, "request_id": "req_0GlUUpnIrC8WXpTKZNn99V", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475080} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["contact_ids", "date_updated"], "data": {"addresses": [], "contact_ids": ["cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cont_iN8dRLv2oU62jXfkgPjetnQrGHTne4YGGfy8hL99iHC"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:54:42.377000+00:00", "date_updated": "2022-11-08T15:59:12.219000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-08T15:59:12.221000", "date_updated": "2022-11-08T15:59:12.221000", "id": "ev_4vkfHubu3srD7FeaX4bDJ8", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/contact/"}, "object_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"contact_ids": ["cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP"], "date_updated": "2022-11-08T15:58:52.124000+00:00"}, "request_id": "req_4hOR6whghRH7VhJtndmAMZ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475082} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:59:12.211000+00:00", "date_updated": "2022-11-08T15:59:12.211000+00:00", "emails": [], "id": "cont_iN8dRLv2oU62jXfkgPjetnQrGHTne4YGGfy8hL99iHC", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [{"phone": "+14156236785", "phone_formatted": "+1 415-623-6785", "type": "office"}], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T15:59:12.213000", "date_updated": "2022-11-08T15:59:12.213000", "id": "ev_08w9w3Y7SLUevspCwHRBUl", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/contact/"}, "object_id": "cont_iN8dRLv2oU62jXfkgPjetnQrGHTne4YGGfy8hL99iHC", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_4hOR6whghRH7VhJtndmAMZ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475084} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2021-07-26T09:08:50+00:00", "attachments": [{"content_id": null, "content_type": "image/jpeg", "filename": "image0.jpeg", "size": 144978}], "bcc": [], "body_html": "", "body_preview": null, "body_text": "", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": null, "created_by_name": null, "date_created": "2021-07-26T09:08:50+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:58:52.109000+00:00", "direction": "incoming", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Mon, 26 Jul 2021 12:08:50 +0300", "from": [{"email": "irina.grankova@gmail.com", "name": "Irina Grankova"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<56EC0E81-FE10-40C6-ACF8-8B448B510DFD@gmail.com>", "reply_to": [], "sender": [{"email": "irina.grankova@gmail.com", "name": "Irina Grankova"}], "subject": "Pic", "to": [{"email": "iryna.grankova@globallogic.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_8ylFXNqFPRAesiUZ63CiHVB4MsHwNhD8TlDpvIGJG8Z", "in_reply_to_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "message_ids": ["<56EC0E81-FE10-40C6-ACF8-8B448B510DFD@gmail.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Irina Grankova ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Pic", "template_id": null, "template_name": null, "thread_id": "acti_v9S0gdPWzRUqjj2taSmmdfigKanA9tThaFe46FtcXGO", "to": ["iryna.grankova@globallogic.com"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:58:52.110000", "date_updated": "2022-11-08T15:58:52.110000", "id": "ev_71a4f23ctfCPczPVhCEfZl", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_8ylFXNqFPRAesiUZ63CiHVB4MsHwNhD8TlDpvIGJG8Z", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475828} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2021-07-26T09:08:50.001000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2021-07-26T09:08:50.001000+00:00", "date_updated": "2022-11-08T15:58:52.098000+00:00", "email_ids": ["acti_8ylFXNqFPRAesiUZ63CiHVB4MsHwNhD8TlDpvIGJG8Z"], "id": "acti_v9S0gdPWzRUqjj2taSmmdfigKanA9tThaFe46FtcXGO", "latest_normalized_subject": "Pic", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "irina.grankova@gmail.com", "name": "Irina Grankova"}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T15:58:52.106000", "date_updated": "2022-11-08T15:58:52.106000", "id": "ev_7QVQU1a4glMZ06dQjYrI4p", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {}, "object_id": "acti_v9S0gdPWzRUqjj2taSmmdfigKanA9tThaFe46FtcXGO", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413475830} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "emails", "title"], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:54:42.381000+00:00", "date_updated": "2022-11-08T15:58:50.257000+00:00", "emails": [{"email": "irina.grankova@gmail.com", "type": "office"}], "id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "Iryna", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [{"phone": "+380636306253", "phone_formatted": "+380 63 630 6253", "type": "office"}], "title": "Test Lead", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T15:58:50.259000", "date_updated": "2022-11-08T15:58:50.259000", "id": "ev_4nGThfW1XaN6zftcnN0V1T", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/contact/cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP/"}, "object_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:54:58.654000+00:00", "emails": [], "title": ""}, "request_id": "req_6PL20eInhJvS22v1MLEIjq", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475832} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "quality_info"], "data": {"_type": "Call", "activity_at": "2022-11-08T15:55:39.770000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:55:39.770000+00:00", "date_updated": "2022-11-08T15:55:51.226000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "blocked", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+380636306253", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"02ce050e090c446c08a2f369d11befe4a043df584c6dcaa2818ce9673f44b77d\",\"kind\":\"audioinput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"01dd010c038de56ab637b74ad0cb07f74d4ed1b558a5d201db5fc811f0b7214c\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"dd3e8462a7fc3ea5a14a0d9eb6009918071a82b3a1d120666e645a849a13e12a\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"030fa574cbd9c7ce44ba12c33b7cafa13c1ace35207eb3e851371aa4ddca879a\",\"kind\":\"audiooutput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"77a66164273de44ca89916508139996aac0473f329234fae178faf773b59c8d8\",\"kind\":\"audiooutput\",\"label\":\"Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"dd3e8462a7fc3ea5a14a0d9eb6009918071a82b3a1d120666e645a849a13e12a\"}],\"reports\":{\"googTrack_7d8641fc-37f3-4975-8236-3f6c9b4e2b88\":{\"id\":\"googTrack_7d8641fc-37f3-4975-8236-3f6c9b4e2b88\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googTrackId\":\"7d8641fc-37f3-4975-8236-3f6c9b4e2b88\"},\"googLibjingleSession_6502613843596828260\":{\"id\":\"googLibjingleSession_6502613843596828260\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"4\",\"googTransmitBitrate\":\"0\"},\"googCertificate_3C:D5:A6:A1:C6:12:95:15:31:67:22:85:2E:F0:8A:F5:82:88:B0:85:75:E2:4E:B3:C6:76:67:EC:14:9E:F1:74\":{\"id\":\"googCertificate_3C:D5:A6:A1:C6:12:95:15:31:67:22:85:2E:F0:8A:F5:82:88:B0:85:75:E2:4E:B3:C6:76:67:EC:14:9E:F1:74\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googFingerprint\":\"3C:D5:A6:A1:C6:12:95:15:31:67:22:85:2E:F0:8A:F5:82:88:B0:85:75:E2:4E:B3:C6:76:67:EC:14:9E:F1:74\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFTCBvKADAgECAgh4Rdz2DA7OEzAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZXZWJSVEMwHhcNMjIxMTA3MTU1NTQwWhcNMjIxMjA4MTU1NTQwWjARMQ8wDQYDVQQDDAZXZWJSVEMwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATGLbGtLviNzMYC7UJFXyjT1YzsP0YJQ5NGpAj63rehJJ9kkyVmhwQXL2suNwfG/TXfsmLc2Hjoz3ToX7/mk4TZMAoGCCqGSM49BAMCA0gAMEUCIQDs6J88609CMoiF9r3GU7ywBLHKlawn8qaUB64F1KtzJwIgC06MwAJZK5J05DAtc1E7IY803bvVlx5AjJ/oYXRs3ZQ=\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_33:2A:09:C7:85:E8:48:50:82:B1:7E:D3:8A:EE:D8:B4:FA:37:08:88:E5:73:29:16:CF:B0:22:CB:41:EB:3A:79\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_3C:D5:A6:A1:C6:12:95:15:31:67:22:85:2E:F0:8A:F5:82:88:B0:85:75:E2:4E:B3:C6:76:67:EC:14:9E:F1:74\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-ptPI/8iJ\":{\"id\":\"Cand-ptPI/8iJ\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"54281\",\"networkType\":\"lan\",\"ipAddress\":\"172.22.63.145\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-09XybDei\":{\"id\":\"Cand-09XybDei\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"54282\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122194687\"},\"Cand-JHFfRiby\":{\"id\":\"Cand-JHFfRiby\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"portNumber\":\"9\",\"networkType\":\"lan\",\"ipAddress\":\"172.22.63.145\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"Cand-KNXs7pfP\":{\"id\":\"Cand-KNXs7pfP\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518214911\"},\"ssrc_1491824088_send\":{\"id\":\"ssrc_1491824088_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"audioInputLevel\":\"1305\",\"packetsLost\":\"0\",\"googRtt\":\"41\",\"totalSamplesDuration\":\"10.84\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"7d8641fc-37f3-4975-8236-3f6c9b4e2b88\",\"totalAudioEnergy\":\"0.17414\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"1491824088\",\"googJitterReceived\":\"2\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"453\",\"bytesSent\":\"36493\"},\"googTrack_9823eb2d-d356-48fa-be23-e524a5fbeb0f\":{\"id\":\"googTrack_9823eb2d-d356-48fa-be23-e524a5fbeb0f\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googTrackId\":\"9823eb2d-d356-48fa-be23-e524a5fbeb0f\"},\"googCertificate_33:2A:09:C7:85:E8:48:50:82:B1:7E:D3:8A:EE:D8:B4:FA:37:08:88:E5:73:29:16:CF:B0:22:CB:41:EB:3A:79\":{\"id\":\"googCertificate_33:2A:09:C7:85:E8:48:50:82:B1:7E:D3:8A:EE:D8:B4:FA:37:08:88:E5:73:29:16:CF:B0:22:CB:41:EB:3A:79\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googFingerprint\":\"33:2A:09:C7:85:E8:48:50:82:B1:7E:D3:8A:EE:D8:B4:FA:37:08:88:E5:73:29:16:CF:B0:22:CB:41:EB:3A:79\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBITCByKADAgECAhQYn2EBUe7cOu6TojMnF084mg39ETAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA3MTU1NTQwWhcNMjIxMjA4MTU1NTQwWjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASpGYWWHn+7WsEVbebOoh2t8tVjDXrgCrfMW5gRd1BZvxOZOjy26b3ujeg4Omu0j3FJXaUKAo/+cDV1tWUKXjMPMAoGCCqGSM49BAMCA0gAMEUCIQDQ6Ihc7VdXbgKr1FjFkwiH6l5BJDJ4P7Cgg0gj9kLEAwIgHBU9WDZ6iBtB9IsaVadXT7CD4A+mX2VGj6UPD4xhQsk=\"},\"Cand-N3dAA/zp\":{\"id\":\"Cand-N3dAA/zp\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"54282\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853759231\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:54282\",\"consentRequestsSent\":\"1\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"7\",\"googRemoteAddress\":\"3.122.181.31:14268\",\"googRtt\":\"36\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"59076\",\"responsesReceived\":\"7\",\"remoteCandidateId\":\"Cand-xxV+nP6X\",\"localCandidateId\":\"Cand-N3dAA/zp\",\"bytesSent\":\"42535\",\"packetsSent\":\"460\"},\"Cand-xxV+nP6X\":{\"id\":\"Cand-xxV+nP6X\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"portNumber\":\"14268\",\"ipAddress\":\"3.122.181.31\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"Conn-0-1-1\":{\"id\":\"Conn-0-1-1\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"false\",\"googLocalAddress\":\"172.22.63.145:54281\",\"consentRequestsSent\":\"16\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"local\",\"googWritable\":\"false\",\"requestsSent\":\"16\",\"googRemoteAddress\":\"3.122.181.31:14268\",\"googRtt\":\"3000\",\"googActiveConnection\":\"false\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"0\",\"responsesReceived\":\"0\",\"remoteCandidateId\":\"Cand-xxV+nP6X\",\"localCandidateId\":\"Cand-ptPI/8iJ\",\"bytesSent\":\"0\",\"packetsSent\":\"0\"},\"ssrc_493233143_recv\":{\"id\":\"ssrc_493233143_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-08T15:55:50.970Z\",\"googDecodingCTN\":\"903\",\"packetsLost\":\"2\",\"googSecondaryDecodedRate\":\"0.00244141\",\"googDecodingPLC\":\"34\",\"packetsReceived\":\"407\",\"googJitterReceived\":\"2\",\"googDecodingCNG\":\"0\",\"ssrc\":\"493233143\",\"googPreferredJitterBufferMs\":\"80\",\"googSpeechExpandRate\":\"0.0394287\",\"totalSamplesDuration\":\"9.03\",\"totalAudioEnergy\":\"0.213002\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"81\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"0.996887\",\"googDecodingNormal\":\"788\",\"googTrackId\":\"9823eb2d-d356-48fa-be23-e524a5fbeb0f\",\"audioOutputLevel\":\"2302\",\"googAccelerateRate\":\"0.0200806\",\"bytesReceived\":\"53896\",\"googCurrentDelayMs\":\"266\",\"googDecodingCTSG\":\"0\",\"googExpandRate\":\"0.0723267\",\"googPreemptiveExpandRate\":\"0.00976562\",\"googJitterBufferMs\":\"197\",\"googDecodingMuted\":\"80\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "UA", "remote_phone": "+380636306253", "remote_phone_formatted": "+380 63 630 6253", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "failed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:55:51.228000", "date_updated": "2022-11-08T15:55:51.228000", "id": "ev_7moyf83QQfjva5tg93RhD6", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/call/acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG/"}, "object_id": "acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:55:40.560000+00:00", "quality_info": ""}, "request_id": "req_53quutY4lJgYrxlaIGxEN2", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475834} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "disposition", "status"], "data": {"_type": "Call", "activity_at": "2022-11-08T15:55:39.770000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:55:39.770000+00:00", "date_updated": "2022-11-08T15:55:40.560000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "blocked", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+380636306253", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "UA", "remote_phone": "+380636306253", "remote_phone_formatted": "+380 63 630 6253", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "failed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:55:40.562000", "date_updated": "2022-11-08T15:55:40.562000", "id": "ev_4zcUvUddibN0HXoNgxAcU7", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/twilio/routing/"}, "object_id": "acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:55:39.770000+00:00", "disposition": null, "status": "created"}, "request_id": "req_2eh49VPImziXm458xVZFwf", "user_id": null}, "emitted_at": 1670413475836} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-08T15:55:39.770000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:55:39.770000+00:00", "date_updated": "2022-11-08T15:55:39.770000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+380636306253", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "UA", "remote_phone": "+380636306253", "remote_phone_formatted": "+380 63 630 6253", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:55:39.772000", "date_updated": "2022-11-08T15:55:39.772000", "id": "ev_5KZv48gx4Kw5A2R2WQw6ga", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/call/"}, "object_id": "acti_cBMvILyTlk57YSm7c8xfb9qNjgTX1z2OyjnPPsTXpRG", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_3scpfPr70WyteAU3xYR0bH", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475838} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "opportunity_due", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-16", "date_created": "2022-11-08T15:55:27.773000+00:00", "date_updated": "2022-11-08T15:55:27.773000+00:00", "id": "noti_mLYZbUFr2FuDE4ZH78FsYktgbfKjEnTqR1GW5qLv7sI", "is_complete": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "object_id": "oppo_QtfwXdJFxmOLRzd3mirP7S5vWWYTEho2uWtHYNSiOUE", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-08T15:55:27.774000", "date_updated": "2022-11-08T15:55:27.774000", "id": "ev_2CZPj494pUqqQ4rW5Mqnvr", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/opportunity/"}, "object_id": "noti_mLYZbUFr2FuDE4ZH78FsYktgbfKjEnTqR1GW5qLv7sI", "object_type": "task.opportunity_due", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_5a5XwuQsEVpAe1WtFVXjMa", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475840} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"annualized_expected_value": 5000, "annualized_value": 10000, "confidence": 50, "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "contact_name": "Iryna", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:55:27.750000+00:00", "date_lost": null, "date_updated": "2022-11-08T15:55:27.750000+00:00", "date_won": "2022-11-16", "expected_value": 5000, "id": "oppo_QtfwXdJFxmOLRzd3mirP7S5vWWYTEho2uWtHYNSiOUE", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "note": "Test", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "status_label": "Demo Completed", "status_type": "active", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "value": 10000, "value_currency": "USD", "value_formatted": "$100", "value_period": "one_time"}, "date_created": "2022-11-08T15:55:27.752000", "date_updated": "2022-11-08T15:55:27.752000", "id": "ev_6uEeoDaNKLXKR5LypaWsMC", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/opportunity/"}, "object_id": "oppo_QtfwXdJFxmOLRzd3mirP7S5vWWYTEho2uWtHYNSiOUE", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_5a5XwuQsEVpAe1WtFVXjMa", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475842} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-17T08:30:00+00:00", "date_created": "2022-11-08T15:55:06.275000+00:00", "date_updated": "2022-11-08T15:55:06.275000+00:00", "due_date": "2022-11-17T08:30:00+00:00", "id": "task_Va4jRQkIhZrUwzejqF3lZ4VaJeqR0cAvzzuaN0IaE5r", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "lead_name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-08T15:55:06.277000", "date_updated": "2022-11-08T15:55:06.277000", "id": "ev_6PnfkZhzJcdkKKSGvlhUJm", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_Va4jRQkIhZrUwzejqF3lZ4VaJeqR0cAvzzuaN0IaE5r", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1McstDK8PWufvVxLETdmBH", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475844} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["contact_id", "date_updated", "lead_id"], "data": {"_type": "Call", "activity_at": "2022-11-08T15:53:39.388000+00:00", "call_method": "regular", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:53:39.388000+00:00", "date_updated": "2022-11-08T15:54:58.677000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "blocked", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+380636306253", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"02ce050e090c446c08a2f369d11befe4a043df584c6dcaa2818ce9673f44b77d\",\"kind\":\"audioinput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"01dd010c038de56ab637b74ad0cb07f74d4ed1b558a5d201db5fc811f0b7214c\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"dd3e8462a7fc3ea5a14a0d9eb6009918071a82b3a1d120666e645a849a13e12a\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"030fa574cbd9c7ce44ba12c33b7cafa13c1ace35207eb3e851371aa4ddca879a\",\"kind\":\"audiooutput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"77a66164273de44ca89916508139996aac0473f329234fae178faf773b59c8d8\",\"kind\":\"audiooutput\",\"label\":\"Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"dd3e8462a7fc3ea5a14a0d9eb6009918071a82b3a1d120666e645a849a13e12a\"}],\"reports\":{\"googTrack_21097906-5e16-4546-a1e5-99a25141d149\":{\"id\":\"googTrack_21097906-5e16-4546-a1e5-99a25141d149\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googTrackId\":\"21097906-5e16-4546-a1e5-99a25141d149\"},\"googLibjingleSession_7992846545231585686\":{\"id\":\"googLibjingleSession_7992846545231585686\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"0\",\"googTransmitBitrate\":\"0\"},\"googCertificate_B7:3A:30:DF:EA:98:D6:8E:9B:52:4F:BF:4B:E8:AD:4F:D2:FD:20:9D:AE:D6:88:FD:3B:DB:8B:B7:21:B1:FB:13\":{\"id\":\"googCertificate_B7:3A:30:DF:EA:98:D6:8E:9B:52:4F:BF:4B:E8:AD:4F:D2:FD:20:9D:AE:D6:88:FD:3B:DB:8B:B7:21:B1:FB:13\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googFingerprint\":\"B7:3A:30:DF:EA:98:D6:8E:9B:52:4F:BF:4B:E8:AD:4F:D2:FD:20:9D:AE:D6:88:FD:3B:DB:8B:B7:21:B1:FB:13\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFjCBvaADAgECAgkAoA4j75C8pHkwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIyMTEwNzE1NTMzOVoXDTIyMTIwODE1NTMzOVowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAErdOmsw7jnSBVuYv3U8vO/OmQoBkAo9xzuZdotq0FbZnUJ3hGyxpd+fXJ6r6QUzhIWBml9+gCI7mTaWY+mliddjAKBggqhkjOPQQDAgNIADBFAiEAuqbNQ1vV0MKe2+dpNmB3k95xntpGdXHcDq2KC9HfFkECIHI7zgkNQxz/8laMcnSwunYQV3va4q0mWPlMY+kNhp7V\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_DD:29:AC:5B:8E:36:4D:CC:A7:E3:5B:5A:BE:AB:9F:70:0E:35:58:7E:95:62:F8:91:75:45:C2:79:F0:FE:9A:F1\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_B7:3A:30:DF:EA:98:D6:8E:9B:52:4F:BF:4B:E8:AD:4F:D2:FD:20:9D:AE:D6:88:FD:3B:DB:8B:B7:21:B1:FB:13\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-yLaNq35b\":{\"id\":\"Cand-yLaNq35b\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"52066\",\"networkType\":\"lan\",\"ipAddress\":\"172.22.63.145\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-5aTDwlok\":{\"id\":\"Cand-5aTDwlok\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"52067\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122194687\"},\"Cand-ZlyWsNC0\":{\"id\":\"Cand-ZlyWsNC0\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"portNumber\":\"9\",\"networkType\":\"lan\",\"ipAddress\":\"172.22.63.145\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"Cand-vWheUEuo\":{\"id\":\"Cand-vWheUEuo\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518214911\"},\"ssrc_3124050629_send\":{\"id\":\"ssrc_3124050629_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"audioInputLevel\":\"15187\",\"packetsLost\":\"0\",\"googRtt\":\"39\",\"totalSamplesDuration\":\"10.77\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"21097906-5e16-4546-a1e5-99a25141d149\",\"totalAudioEnergy\":\"0.2048\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"3124050629\",\"googJitterReceived\":\"2\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"451\",\"bytesSent\":\"35887\"},\"googTrack_e173b88f-743e-499e-8902-ffdcd5153933\":{\"id\":\"googTrack_e173b88f-743e-499e-8902-ffdcd5153933\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googTrackId\":\"e173b88f-743e-499e-8902-ffdcd5153933\"},\"googCertificate_DD:29:AC:5B:8E:36:4D:CC:A7:E3:5B:5A:BE:AB:9F:70:0E:35:58:7E:95:62:F8:91:75:45:C2:79:F0:FE:9A:F1\":{\"id\":\"googCertificate_DD:29:AC:5B:8E:36:4D:CC:A7:E3:5B:5A:BE:AB:9F:70:0E:35:58:7E:95:62:F8:91:75:45:C2:79:F0:FE:9A:F1\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googFingerprint\":\"DD:29:AC:5B:8E:36:4D:CC:A7:E3:5B:5A:BE:AB:9F:70:0E:35:58:7E:95:62:F8:91:75:45:C2:79:F0:FE:9A:F1\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBITCByKADAgECAhQJl7smVexGaG/Qr9v5qYZsXta+QTAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA3MTU1MzM5WhcNMjIxMjA4MTU1MzM5WjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATX1jJm+uTeMjAU8oYuqRa8KUh+q5LcyAMKAPGeMyG+JGudLf2ANpZzFa29WuKtwGU0agGPb1+osv/sl3JCtjo+MAoGCCqGSM49BAMCA0gAMEUCIQD9/bOonuf8+GRFNBTQxvFFx5EVCCc2n4EDRc3QnEDyBQIgPdZ+XGZbzaptQP4S2cE3sZy8g0Adhm3FnrQuYfC3gzI=\"},\"Cand-YVPTyt7p\":{\"id\":\"Cand-YVPTyt7p\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"52067\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853759231\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:52067\",\"consentRequestsSent\":\"1\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"7\",\"googRemoteAddress\":\"3.122.181.25:13394\",\"googRtt\":\"40\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"59297\",\"responsesReceived\":\"7\",\"remoteCandidateId\":\"Cand-NRCBQXDe\",\"localCandidateId\":\"Cand-YVPTyt7p\",\"bytesSent\":\"41842\",\"packetsSent\":\"457\"},\"Cand-NRCBQXDe\":{\"id\":\"Cand-NRCBQXDe\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"portNumber\":\"13394\",\"ipAddress\":\"3.122.181.25\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"Conn-0-1-1\":{\"id\":\"Conn-0-1-1\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"false\",\"googLocalAddress\":\"172.22.63.145:52066\",\"consentRequestsSent\":\"16\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"local\",\"googWritable\":\"false\",\"requestsSent\":\"16\",\"googRemoteAddress\":\"3.122.181.25:13394\",\"googRtt\":\"3000\",\"googActiveConnection\":\"false\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"0\",\"responsesReceived\":\"0\",\"remoteCandidateId\":\"Cand-NRCBQXDe\",\"localCandidateId\":\"Cand-yLaNq35b\",\"bytesSent\":\"0\",\"packetsSent\":\"0\"},\"ssrc_1314978720_recv\":{\"id\":\"ssrc_1314978720_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googDecodingCTN\":\"918\",\"packetsLost\":\"1\",\"googSecondaryDecodedRate\":\"0\",\"googDecodingPLC\":\"13\",\"packetsReceived\":\"408\",\"googJitterReceived\":\"3\",\"googDecodingCNG\":\"0\",\"ssrc\":\"1314978720\",\"googPreferredJitterBufferMs\":\"40\",\"googSpeechExpandRate\":\"0.0134888\",\"totalSamplesDuration\":\"9.18\",\"totalAudioEnergy\":\"0.208203\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"96\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"1\",\"googDecodingNormal\":\"809\",\"googTrackId\":\"e173b88f-743e-499e-8902-ffdcd5153933\",\"audioOutputLevel\":\"649\",\"googAccelerateRate\":\"0.00823975\",\"bytesReceived\":\"54095\",\"googCurrentDelayMs\":\"102\",\"googDecodingCTSG\":\"0\",\"googExpandRate\":\"0.0524902\",\"googPreemptiveExpandRate\":\"0.00360107\",\"googJitterBufferMs\":\"32\",\"googDecodingMuted\":\"95\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "UA", "remote_phone": "+380636306253", "remote_phone_formatted": "+380 63 630 6253", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "failed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:54:58.679000", "date_updated": "2022-11-08T15:54:58.679000", "id": "ev_53ArnyOoeXFvCBtCKDceGn", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/contact/cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP/"}, "object_id": "acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"contact_id": null, "date_updated": "2022-11-08T15:53:51.106000+00:00", "lead_id": null}, "request_id": "req_6Yc1zSvUGqd9BQuqhw9OAA", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475846} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "phones"], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:54:42.381000+00:00", "date_updated": "2022-11-08T15:54:58.654000+00:00", "emails": [], "id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "Iryna", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [{"phone": "+380636306253", "phone_formatted": "+380 63 630 6253", "type": "office"}], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T15:54:58.656000", "date_updated": "2022-11-08T15:54:58.656000", "id": "ev_1JiBQ5XQvNkjmgUFwPwdx5", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "PUT", "request_path": "/api/v1/contact/cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP/"}, "object_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:54:42.381000+00:00", "phones": []}, "request_id": "req_6Yc1zSvUGqd9BQuqhw9OAA", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475848} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Created", "activity_at": "2022-11-08T15:54:42.377000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:54:42.377000+00:00", "date_updated": "2022-11-08T15:54:42.398000+00:00", "id": "acti_CojceqMDlW46aVmKCv6YXS8oMJGPfchHYfXXySGMm39", "import_id": null, "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "ui", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:54:42.400000", "date_updated": "2022-11-08T15:54:42.400000", "id": "ev_7j5Q59chxt2eHsjFtfHgim", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "acti_CojceqMDlW46aVmKCv6YXS8oMJGPfchHYfXXySGMm39", "object_type": "activity.created", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1nEFEcijpyI40ReiCcvQgD", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475850} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"addresses": [], "contact_ids": ["cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:54:42.377000+00:00", "date_updated": "2022-11-08T15:54:42.385000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "has:phone_numbers opportunities:1 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-08T15:54:42.387000", "date_updated": "2022-11-08T15:54:42.387000", "id": "ev_3qA6kOTuiB4VdFwxl4WTyf", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1nEFEcijpyI40ReiCcvQgD", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475852} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:54:42.381000+00:00", "date_updated": "2022-11-08T15:54:42.381000+00:00", "emails": [], "id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "name": "Iryna", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T15:54:42.383000", "date_updated": "2022-11-08T15:54:42.383000", "id": "ev_705h595sD1lJg0A4AeFZ5j", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1nEFEcijpyI40ReiCcvQgD", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475853} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "quality_info"], "data": {"_type": "Call", "activity_at": "2022-11-08T15:53:39.388000+00:00", "call_method": "regular", "contact_id": null, "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:53:39.388000+00:00", "date_updated": "2022-11-08T15:53:51.106000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "blocked", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": null, "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+380636306253", "quality_info": "{\"version\":\"7.0.7\",\"platform\":\"Win32\",\"type\":\"webrtc\",\"userAgent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) CloseIO/7.0.7 Chrome/91.0.4472.164 Electron/13.6.6 Safari/537.36\",\"devices\":[{\"deviceId\":\"default\",\"kind\":\"audioinput\",\"label\":\"Default - Microphone (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"communications\",\"kind\":\"audioinput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"02ce050e090c446c08a2f369d11befe4a043df584c6dcaa2818ce9673f44b77d\",\"kind\":\"audioinput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"f22c0a8b3012377e4a5c8a8ba0050d336545cf2d52650ae978566bbb461d9386\",\"kind\":\"audioinput\",\"label\":\"Microphone (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"83921fe5825a5823c756da838e2c87c161cbfaefba6d74003cf256372a843d38\",\"kind\":\"videoinput\",\"label\":\"HP HD Camera (04f2:b5ee)\",\"groupId\":\"01dd010c038de56ab637b74ad0cb07f74d4ed1b558a5d201db5fc811f0b7214c\"},{\"deviceId\":\"default\",\"kind\":\"audiooutput\",\"label\":\"Default - Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"dd3e8462a7fc3ea5a14a0d9eb6009918071a82b3a1d120666e645a849a13e12a\"},{\"deviceId\":\"communications\",\"kind\":\"audiooutput\",\"label\":\"Communications - Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"7b0e22e3609b4b35ad95aec2e9865e004b5a051ae71e220ff1ee18472802dd41\",\"kind\":\"audiooutput\",\"label\":\"Speakers (Conexant ISST Audio)\",\"groupId\":\"a0f6204e379b40b0abf0bb7ba0c8c2143c70b68486fcc12000b4e26304c786f0\"},{\"deviceId\":\"030fa574cbd9c7ce44ba12c33b7cafa13c1ace35207eb3e851371aa4ddca879a\",\"kind\":\"audiooutput\",\"label\":\"Headset (JBL TUNE510BT Hands-Free AG Audio) (Bluetooth)\",\"groupId\":\"748e4bd95919a67f46c183da9dbc19742ea24bff16ecd5a4a1c220136c5dfa22\"},{\"deviceId\":\"77a66164273de44ca89916508139996aac0473f329234fae178faf773b59c8d8\",\"kind\":\"audiooutput\",\"label\":\"Headphones (JBL TUNE510BT Stereo) (Bluetooth)\",\"groupId\":\"dd3e8462a7fc3ea5a14a0d9eb6009918071a82b3a1d120666e645a849a13e12a\"}],\"reports\":{\"googTrack_21097906-5e16-4546-a1e5-99a25141d149\":{\"id\":\"googTrack_21097906-5e16-4546-a1e5-99a25141d149\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googTrackId\":\"21097906-5e16-4546-a1e5-99a25141d149\"},\"googLibjingleSession_7992846545231585686\":{\"id\":\"googLibjingleSession_7992846545231585686\",\"type\":\"googLibjingleSession\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googInitiator\":\"true\"},\"bweforvideo\":{\"id\":\"bweforvideo\",\"type\":\"VideoBwe\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googActualEncBitrate\":\"0\",\"googAvailableSendBandwidth\":\"300000\",\"googRetransmitBitrate\":\"0\",\"googAvailableReceiveBandwidth\":\"0\",\"googTargetEncBitrate\":\"0\",\"googBucketDelay\":\"0\",\"googTransmitBitrate\":\"0\"},\"googCertificate_B7:3A:30:DF:EA:98:D6:8E:9B:52:4F:BF:4B:E8:AD:4F:D2:FD:20:9D:AE:D6:88:FD:3B:DB:8B:B7:21:B1:FB:13\":{\"id\":\"googCertificate_B7:3A:30:DF:EA:98:D6:8E:9B:52:4F:BF:4B:E8:AD:4F:D2:FD:20:9D:AE:D6:88:FD:3B:DB:8B:B7:21:B1:FB:13\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googFingerprint\":\"B7:3A:30:DF:EA:98:D6:8E:9B:52:4F:BF:4B:E8:AD:4F:D2:FD:20:9D:AE:D6:88:FD:3B:DB:8B:B7:21:B1:FB:13\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBFjCBvaADAgECAgkAoA4j75C8pHkwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIyMTEwNzE1NTMzOVoXDTIyMTIwODE1NTMzOVowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAErdOmsw7jnSBVuYv3U8vO/OmQoBkAo9xzuZdotq0FbZnUJ3hGyxpd+fXJ6r6QUzhIWBml9+gCI7mTaWY+mliddjAKBggqhkjOPQQDAgNIADBFAiEAuqbNQ1vV0MKe2+dpNmB3k95xntpGdXHcDq2KC9HfFkECIHI7zgkNQxz/8laMcnSwunYQV3va4q0mWPlMY+kNhp7V\"},\"Channel-0-1\":{\"id\":\"Channel-0-1\",\"type\":\"googComponent\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googComponent\":\"1\",\"remoteCertificateId\":\"googCertificate_DD:29:AC:5B:8E:36:4D:CC:A7:E3:5B:5A:BE:AB:9F:70:0E:35:58:7E:95:62:F8:91:75:45:C2:79:F0:FE:9A:F1\",\"selectedCandidatePairId\":\"Conn-0-1-0\",\"dtlsCipher\":\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\",\"localCertificateId\":\"googCertificate_B7:3A:30:DF:EA:98:D6:8E:9B:52:4F:BF:4B:E8:AD:4F:D2:FD:20:9D:AE:D6:88:FD:3B:DB:8B:B7:21:B1:FB:13\",\"srtpCipher\":\"AES_CM_128_HMAC_SHA1_80\"},\"Cand-yLaNq35b\":{\"id\":\"Cand-yLaNq35b\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"52066\",\"networkType\":\"lan\",\"ipAddress\":\"172.22.63.145\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122260223\"},\"Cand-5aTDwlok\":{\"id\":\"Cand-5aTDwlok\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"52067\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"host\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"2122194687\"},\"Cand-ZlyWsNC0\":{\"id\":\"Cand-ZlyWsNC0\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"portNumber\":\"9\",\"networkType\":\"lan\",\"ipAddress\":\"172.22.63.145\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518280447\"},\"Cand-vWheUEuo\":{\"id\":\"Cand-vWheUEuo\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"portNumber\":\"9\",\"networkType\":\"wlan\",\"ipAddress\":\"192.168.0.178\",\"transport\":\"tcp\",\"candidateType\":\"host\",\"priority\":\"1518214911\"},\"ssrc_3124050629_send\":{\"id\":\"ssrc_3124050629_send\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"audioInputLevel\":\"15187\",\"packetsLost\":\"0\",\"googRtt\":\"39\",\"totalSamplesDuration\":\"10.77\",\"googEchoCancellationReturnLossEnhancement\":\"0\",\"googTrackId\":\"21097906-5e16-4546-a1e5-99a25141d149\",\"totalAudioEnergy\":\"0.2048\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googEchoCancellationReturnLoss\":\"-30\",\"googCodecName\":\"opus\",\"ssrc\":\"3124050629\",\"googJitterReceived\":\"2\",\"googTypingNoiseState\":\"false\",\"packetsSent\":\"451\",\"bytesSent\":\"35887\"},\"googTrack_e173b88f-743e-499e-8902-ffdcd5153933\":{\"id\":\"googTrack_e173b88f-743e-499e-8902-ffdcd5153933\",\"type\":\"googTrack\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googTrackId\":\"e173b88f-743e-499e-8902-ffdcd5153933\"},\"googCertificate_DD:29:AC:5B:8E:36:4D:CC:A7:E3:5B:5A:BE:AB:9F:70:0E:35:58:7E:95:62:F8:91:75:45:C2:79:F0:FE:9A:F1\":{\"id\":\"googCertificate_DD:29:AC:5B:8E:36:4D:CC:A7:E3:5B:5A:BE:AB:9F:70:0E:35:58:7E:95:62:F8:91:75:45:C2:79:F0:FE:9A:F1\",\"type\":\"googCertificate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googFingerprint\":\"DD:29:AC:5B:8E:36:4D:CC:A7:E3:5B:5A:BE:AB:9F:70:0E:35:58:7E:95:62:F8:91:75:45:C2:79:F0:FE:9A:F1\",\"googFingerprintAlgorithm\":\"sha-256\",\"googDerBase64\":\"MIIBITCByKADAgECAhQJl7smVexGaG/Qr9v5qYZsXta+QTAKBggqhkjOPQQDAjARMQ8wDQYDVQQDDAZ0d2lsaW8wHhcNMjIxMTA3MTU1MzM5WhcNMjIxMjA4MTU1MzM5WjARMQ8wDQYDVQQDDAZ0d2lsaW8wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATX1jJm+uTeMjAU8oYuqRa8KUh+q5LcyAMKAPGeMyG+JGudLf2ANpZzFa29WuKtwGU0agGPb1+osv/sl3JCtjo+MAoGCCqGSM49BAMCA0gAMEUCIQD9/bOonuf8+GRFNBTQxvFFx5EVCCc2n4EDRc3QnEDyBQIgPdZ+XGZbzaptQP4S2cE3sZy8g0Adhm3FnrQuYfC3gzI=\"},\"Cand-YVPTyt7p\":{\"id\":\"Cand-YVPTyt7p\",\"type\":\"localcandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"stunKeepaliveRequestsSent\":\"0\",\"portNumber\":\"52067\",\"networkType\":\"wlan\",\"ipAddress\":\"85.209.47.207\",\"stunKeepaliveResponsesReceived\":\"0\",\"stunKeepaliveRttTotal\":\"0\",\"transport\":\"udp\",\"candidateType\":\"peerreflexive\",\"stunKeepaliveRttSquaredTotal\":\"0\",\"priority\":\"1853759231\"},\"Conn-0-1-0\":{\"id\":\"Conn-0-1-0\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"true\",\"googLocalAddress\":\"85.209.47.207:52067\",\"consentRequestsSent\":\"1\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"prflx\",\"googWritable\":\"true\",\"requestsSent\":\"7\",\"googRemoteAddress\":\"3.122.181.25:13394\",\"googRtt\":\"40\",\"googActiveConnection\":\"true\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"59297\",\"responsesReceived\":\"7\",\"remoteCandidateId\":\"Cand-NRCBQXDe\",\"localCandidateId\":\"Cand-YVPTyt7p\",\"bytesSent\":\"41842\",\"packetsSent\":\"457\"},\"Cand-NRCBQXDe\":{\"id\":\"Cand-NRCBQXDe\",\"type\":\"remotecandidate\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"portNumber\":\"13394\",\"ipAddress\":\"3.122.181.25\",\"transport\":\"udp\",\"candidateType\":\"host\",\"priority\":\"2130706431\"},\"Conn-0-1-1\":{\"id\":\"Conn-0-1-1\",\"type\":\"googCandidatePair\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"responsesSent\":\"0\",\"requestsReceived\":\"0\",\"googRemoteCandidateType\":\"local\",\"googReadable\":\"false\",\"googLocalAddress\":\"172.22.63.145:52066\",\"consentRequestsSent\":\"16\",\"googTransportType\":\"udp\",\"googChannelId\":\"Channel-0-1\",\"googLocalCandidateType\":\"local\",\"googWritable\":\"false\",\"requestsSent\":\"16\",\"googRemoteAddress\":\"3.122.181.25:13394\",\"googRtt\":\"3000\",\"googActiveConnection\":\"false\",\"packetsDiscardedOnSend\":\"0\",\"bytesReceived\":\"0\",\"responsesReceived\":\"0\",\"remoteCandidateId\":\"Cand-NRCBQXDe\",\"localCandidateId\":\"Cand-yLaNq35b\",\"bytesSent\":\"0\",\"packetsSent\":\"0\"},\"ssrc_1314978720_recv\":{\"id\":\"ssrc_1314978720_recv\",\"type\":\"ssrc\",\"timestamp\":\"2022-11-08T15:53:50.476Z\",\"googDecodingCTN\":\"918\",\"packetsLost\":\"1\",\"googSecondaryDecodedRate\":\"0\",\"googDecodingPLC\":\"13\",\"packetsReceived\":\"408\",\"googJitterReceived\":\"3\",\"googDecodingCNG\":\"0\",\"ssrc\":\"1314978720\",\"googPreferredJitterBufferMs\":\"40\",\"googSpeechExpandRate\":\"0.0134888\",\"totalSamplesDuration\":\"9.18\",\"totalAudioEnergy\":\"0.208203\",\"transportId\":\"Channel-0-1\",\"mediaType\":\"audio\",\"googDecodingPLCCNG\":\"96\",\"googCodecName\":\"opus\",\"googSecondaryDiscardedRate\":\"1\",\"googDecodingNormal\":\"809\",\"googTrackId\":\"e173b88f-743e-499e-8902-ffdcd5153933\",\"audioOutputLevel\":\"649\",\"googAccelerateRate\":\"0.00823975\",\"bytesReceived\":\"54095\",\"googCurrentDelayMs\":\"102\",\"googDecodingCTSG\":\"0\",\"googExpandRate\":\"0.0524902\",\"googPreemptiveExpandRate\":\"0.00360107\",\"googJitterBufferMs\":\"32\",\"googDecodingMuted\":\"95\"}},\"inputId\":\"default\",\"outputId\":\"default\",\"ringtoneId\":\"default\",\"dtmfInfo\":[]}", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "UA", "remote_phone": "+380636306253", "remote_phone_formatted": "+380 63 630 6253", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "failed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:53:51.108000", "date_updated": "2022-11-08T15:53:51.108000", "id": "ev_6VaXEt7XPtwqMrb54DWZhj", "lead_id": null, "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/call/acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ/"}, "object_id": "acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:53:40.150000+00:00", "quality_info": ""}, "request_id": "req_2Bl7dPyCQMcpduW49IKifG", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475855} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "disposition", "status"], "data": {"_type": "Call", "activity_at": "2022-11-08T15:53:39.388000+00:00", "call_method": "regular", "contact_id": null, "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:53:39.388000+00:00", "date_updated": "2022-11-08T15:53:40.150000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "blocked", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": null, "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+380636306253", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "UA", "remote_phone": "+380636306253", "remote_phone_formatted": "+380 63 630 6253", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "failed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:53:40.153000", "date_updated": "2022-11-08T15:53:40.153000", "id": "ev_5yMGB9HNOYZYefUVXaYYfP", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/twilio/routing/"}, "object_id": "acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:53:39.388000+00:00", "disposition": null, "status": "created"}, "request_id": "req_7B5nKPQddmYLsGarHd8WBH", "user_id": null}, "emitted_at": 1670413475857} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-08T15:53:39.388000+00:00", "call_method": "regular", "contact_id": null, "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:53:39.388000+00:00", "date_updated": "2022-11-08T15:53:39.388000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": null, "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": null, "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+380636306253", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "UA", "remote_phone": "+380636306253", "remote_phone_formatted": "+380 63 630 6253", "sequence_id": null, "sequence_subscription_id": null, "source": "Close.io", "status": "created", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:53:39.392000", "date_updated": "2022-11-08T15:53:39.392000", "id": "ev_2maC3WHimNes2vQDclaDnQ", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/activity/call/"}, "object_id": "acti_HpPgUhPNiZeEkjdpfW6jmK11uXJyTZHHiubYmU0uoFZ", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6qjxD7IbhIBCvZ21AIhoOF", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475859} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"date_created": "2022-11-08T15:50:57.032374", "date_updated": "2022-11-08T15:50:57.032374", "id": "save_UeQpNDWG0AuXKKunEIABD0qSjHvV62EFaTHzN70B6gN", "is_shared": false, "is_user_dependent": false, "name": "Deleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": null, "s_query": {"query": {"negate": false, "queries": [{"negate": false, "object_type": "lead", "type": "object_type"}, {"negate": false, "queries": [{"negate": false, "queries": [{"condition": {"before": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "end"}, "on_or_after": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "start"}, "type": "moment_range"}, "field": {"field_name": "date_created", "object_type": "lead", "type": "regular_field"}, "negate": false, "type": "field_condition"}], "type": "and"}], "type": "and"}], "type": "and"}, "results_limit": null, "sort": []}, "type": "lead", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:50:57.034000", "date_updated": "2022-11-08T15:50:57.034000", "id": "ev_6aWq2kWz9duPf63ZIwbhy9", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/saved_search/"}, "object_id": "save_UeQpNDWG0AuXKKunEIABD0qSjHvV62EFaTHzN70B6gN", "object_type": "saved_search", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_4NhKIo1f0nC4CodvXzLrP7", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475861} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads_processed", "n_objects_processed", "status"], "data": {"bulk_object_type": "lead", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:49:38.627000+00:00", "date_updated": "2022-11-08T15:49:44.832000+00:00", "id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52", "n_leads": 3, "n_leads_processed": 3, "n_objects": 3, "n_objects_processed": 3, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "lead", "type": "object_type"}, {"negate": false, "queries": [{"negate": false, "queries": [{"condition": {"before": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "end"}, "on_or_after": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "start"}, "type": "moment_range"}, "field": {"field_name": "date_created", "object_type": "lead", "type": "regular_field"}, "negate": false, "type": "field_condition"}], "type": "and"}], "type": "and"}], "type": "and"}, "send_done_email": true, "sort": [], "status": "done", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:49:43.181000", "date_updated": "2022-11-08T15:49:44.840000", "id": "ev_52jvR8zgKF2561ffYM0gne", "lead_id": null, "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52", "object_type": "bulk_action.delete", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:49:42.212000+00:00", "n_leads_processed": 0, "n_objects_processed": 0, "status": "processing"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475863} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"bulk_object_type": "lead", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:49:38.627000+00:00", "date_updated": "2022-11-08T15:49:44.832000+00:00", "id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52", "n_leads": 3, "n_leads_processed": 3, "n_objects": 3, "n_objects_processed": 3, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "lead", "type": "object_type"}, {"negate": false, "queries": [{"negate": false, "queries": [{"condition": {"before": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "end"}, "on_or_after": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "start"}, "type": "moment_range"}, "field": {"field_name": "date_created", "object_type": "lead", "type": "regular_field"}, "negate": false, "type": "field_condition"}], "type": "and"}], "type": "and"}], "type": "and"}, "send_done_email": true, "sort": [], "status": "done", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:49:44.840000", "date_updated": "2022-11-08T15:49:44.840000", "id": "ev_3pLh6xQoRbPFBZlvm2HSCj", "lead_id": null, "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52", "object_type": "bulk_action.delete", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475865} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:44.195000", "date_updated": "2022-11-08T15:49:44.195000", "id": "ev_08L0oQryDMsEgdqgqFmseK", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"addresses": [], "contact_ids": ["cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:39:18.101000+00:00", "date_updated": "2022-11-08T15:02:54.138000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_y6v7svdpj3v1ZHd1GoiJFcKrUGrA0jl2Af53jfGbkN9", "status_label": "Qualified", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475867} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:44.160000", "date_updated": "2022-11-08T15:49:44.160000", "id": "ev_4oTvpet9x9EvSaBL170JBr", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "oppo_Q5P0tdfD07i2ik9Xj3BtLO0z7R8DYe9sdCOoQgCXCju", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"annualized_expected_value": 600000, "annualized_value": 600000, "confidence": 100, "contact_id": null, "contact_name": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:39:45.225000+00:00", "date_lost": null, "date_updated": "2022-11-08T12:39:45.225000+00:00", "date_won": "2022-11-08", "expected_value": 50000, "id": "oppo_Q5P0tdfD07i2ik9Xj3BtLO0z7R8DYe9sdCOoQgCXCju", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_gaqEGSVHIFzrofTfzzg5UfjyBZ1B6KERccIy2MOp8FG", "status_label": "Won", "status_type": "won", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "value": 50000, "value_currency": "USD", "value_formatted": "$500 monthly", "value_period": "monthly"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475869} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:44.114000", "date_updated": "2022-11-08T15:49:44.114000", "id": "ev_2Qwkl36GqKyUQIPMeLvPsV", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "noti_TmKkh9qNFLGadhDQaMvSBhvt7NpKG5LaQeA8QMoy7mD", "object_type": "task.opportunity_due", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "opportunity_due", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-08", "date_created": "2022-11-08T12:39:45.247000+00:00", "date_updated": "2022-11-08T12:39:45.247000+00:00", "id": "noti_TmKkh9qNFLGadhDQaMvSBhvt7NpKG5LaQeA8QMoy7mD", "is_complete": true, "is_new": false, "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": "oppo_Q5P0tdfD07i2ik9Xj3BtLO0z7R8DYe9sdCOoQgCXCju", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475871} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:44.083000", "date_updated": "2022-11-08T15:49:44.083000", "id": "ev_3QceiagvLbpgOVJH5vUj09", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "task_TkXjx6VgrvQDAvjgw5zF3tbMfVOKSUgfv4T9wDDvzor", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-08", "date_created": "2022-11-08T12:39:28.163000+00:00", "date_updated": "2022-11-08T12:39:28.163000+00:00", "due_date": "2022-11-08", "id": "task_TkXjx6VgrvQDAvjgw5zF3tbMfVOKSUgfv4T9wDDvzor", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475872} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:44.051000", "date_updated": "2022-11-08T15:49:44.051000", "id": "ev_3Vnz3YErgvKZXaGGgij8Du", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "acti_9XUHcfmeKdaDhVS82diWdqGnKPvEfM3SkEr2t0uVVtb", "object_type": "activity.created", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "Created", "activity_at": "2022-11-08T12:39:18.101000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:39:18.101000+00:00", "date_updated": "2022-11-08T12:39:18.119000+00:00", "id": "acti_9XUHcfmeKdaDhVS82diWdqGnKPvEfM3SkEr2t0uVVtb", "import_id": null, "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "ui", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475874} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:44.036000", "date_updated": "2022-11-08T15:49:44.036000", "id": "ev_2YAKsQ5f9sktHLRgNpYFFt", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "acti_djNEynab5lvt0dA3DR2zp57cty6YQ958yzPyTH14rp3", "object_type": "activity.lead_status_change", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "LeadStatusChange", "activity_at": "2022-11-08T12:39:23.457000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:39:23.457000+00:00", "date_updated": "2022-11-08T12:39:23.457000+00:00", "id": "acti_djNEynab5lvt0dA3DR2zp57cty6YQ958yzPyTH14rp3", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "new_status_id": "stat_y6v7svdpj3v1ZHd1GoiJFcKrUGrA0jl2Af53jfGbkN9", "new_status_label": "Qualified", "old_status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "old_status_label": "Potential", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475876} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:44.008000", "date_updated": "2022-11-08T15:49:44.008000", "id": "ev_70IxN5nW0T7vG1drZGDSS7", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:40:09.329000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Facebook", "custom.cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm": "Yes", "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "Stark Industries", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Media", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Point of Contact"], "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "date_created": "2022-11-08T12:40:09.329000+00:00", "date_updated": "2022-11-08T12:40:25.872000+00:00", "id": "acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "published", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475878} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:43.984000", "date_updated": "2022-11-08T15:49:43.984000", "id": "ev_04M1UF4zGlTWGbfrYmyjPj", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "acti_FTn9toCS3uqaRzfmlo7RaVjAHuuWWlio1ShJlwguBxh", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:40:32.535000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "Meeting 1", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "date_created": "2022-11-08T12:40:32.535000+00:00", "date_updated": "2022-11-08T12:40:38.917000+00:00", "id": "acti_FTn9toCS3uqaRzfmlo7RaVjAHuuWWlio1ShJlwguBxh", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "published", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475880} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:43.956000", "date_updated": "2022-11-08T15:49:43.956000", "id": "ev_5oGT1yYcKEN6XwKbVrLMNW", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "SMS", "activity_at": "2022-11-08T15:02:53.603000+00:00", "attachments": [], "contact_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:02:35.118000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:02:53.603000+00:00", "date_updated": "2022-11-08T15:02:53.603000+00:00", "direction": "outbound", "error_message": null, "id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "", "text": "test", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475882} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:43.934000", "date_updated": "2022-11-08T15:49:43.934000", "id": "ev_3NXxfiLZI1jJcJKs3iYBaV", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "acti_UP1u6YW6eZkO2PP1M4YdPEu78ba2Rv73vmF3GJzVcgj", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "Call", "activity_at": "2022-11-08T15:02:48.288000+00:00", "call_method": "external", "contact_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:02:48.288000+00:00", "date_updated": "2022-11-08T15:02:54.131000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_UP1u6YW6eZkO2PP1M4YdPEu78ba2Rv73vmF3GJzVcgj", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "Test call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "External", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475884} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:43.573000", "date_updated": "2022-11-08T15:49:43.573000", "id": "ev_62exwVxfm273vZ7afSu8rO", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:39:18.105000+00:00", "date_updated": "2022-11-08T15:02:31.847000+00:00", "emails": [], "id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "name": "Test Lead 3", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [{"phone": "+14156236785", "phone_formatted": "+1 415-623-6785", "type": "office"}], "title": "Test lead", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475886} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:43.099000", "date_updated": "2022-11-08T15:49:43.099000", "id": "ev_1UVQT6sBYcTRgo9SXTGL8T", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"addresses": [], "contact_ids": ["cont_XZV5fWf7skLHu1NrWmcu2Bb5T2hjFx1wMm3YKh4Pvdh"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:25:18.399000+00:00", "date_updated": "2022-11-08T15:18:01.057000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475888} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:43.081000", "date_updated": "2022-11-08T15:49:43.081000", "id": "ev_5i0J2MfRnvycVmEkYmz4PW", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "oppo_dZRZrkuLZqxtoVlK3bwAmKM3UyIgHW9gc1Gkr7SOtvR", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"annualized_expected_value": 50000, "annualized_value": 100000, "confidence": 50, "contact_id": "cont_XZV5fWf7skLHu1NrWmcu2Bb5T2hjFx1wMm3YKh4Pvdh", "contact_name": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_Ci7oJh7QiC0Bizd4Lcw9jrDLSC5OSWGux5O0YLbyzBw": "12345", "custom.cf_Z6Vyxe2J0lrRqFpWQQGLkPo8iwhmZ9hzWc69ll2oFox": "2022-11-23", "date_created": "2022-11-08T12:26:13.638000+00:00", "date_lost": null, "date_updated": "2022-11-08T12:26:13.638000+00:00", "date_won": "2022-11-30", "expected_value": 50000, "id": "oppo_dZRZrkuLZqxtoVlK3bwAmKM3UyIgHW9gc1Gkr7SOtvR", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "status_label": "Demo Completed", "status_type": "active", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "value": 100000, "value_currency": "USD", "value_formatted": "$1,000", "value_period": "one_time"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475889} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:43.031000", "date_updated": "2022-11-08T15:49:43.031000", "id": "ev_0CpbJj1WXkDckr6sUAJMWq", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"addresses": [], "contact_ids": ["cont_qs64s6KtlTtHuDUfftdGRYnHE6tdU8GIGdPr1zurKz1"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:38:24.066000+00:00", "date_updated": "2022-11-08T12:38:51.610000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475891} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:43.026000", "date_updated": "2022-11-08T15:49:43.026000", "id": "ev_7fJd5iVETHMy2Hz53dPDCr", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "noti_92aFlB5tcmbJW89lg4fTyBOdAJFJt13bToBOvzypOw5", "object_type": "task.opportunity_due", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "opportunity_due", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-30", "date_created": "2022-11-08T12:26:13.663000+00:00", "date_updated": "2022-11-08T12:26:13.663000+00:00", "id": "noti_92aFlB5tcmbJW89lg4fTyBOdAJFJt13bToBOvzypOw5", "is_complete": false, "is_new": true, "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": "oppo_dZRZrkuLZqxtoVlK3bwAmKM3UyIgHW9gc1Gkr7SOtvR", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475893} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:43.012000", "date_updated": "2022-11-08T15:49:43.012000", "id": "ev_2oJogVbe9dzUTLU5QLZb0s", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "oppo_jKsuUM39hyb0lRGfX42LdnNA7gAPeg6WPGDyshYQdtd", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"annualized_expected_value": 10000, "annualized_value": 20000, "confidence": 50, "contact_id": "cont_qs64s6KtlTtHuDUfftdGRYnHE6tdU8GIGdPr1zurKz1", "contact_name": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:38:51.568000+00:00", "date_lost": null, "date_updated": "2022-11-08T12:38:51.568000+00:00", "date_won": "2022-11-17", "expected_value": 10000, "id": "oppo_jKsuUM39hyb0lRGfX42LdnNA7gAPeg6WPGDyshYQdtd", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_ObYTUqjVZW0nTZXjvHhzMGyK999e42WZdIhkaNq12En", "status_label": "Contract Sent", "status_type": "active", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "value": 20000, "value_currency": "USD", "value_formatted": "$200", "value_period": "one_time"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475895} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:42.988000", "date_updated": "2022-11-08T15:49:42.988000", "id": "ev_2i8CHROwV4DQSuIky602rL", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "task_gwhiRc96yDf2eXxh31ZhPgCEnTJYuRlV3xg2EMFD7Pp", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-15", "date_created": "2022-11-08T12:25:32.733000+00:00", "date_updated": "2022-11-08T15:18:00.018000+00:00", "due_date": "2022-11-15", "id": "task_gwhiRc96yDf2eXxh31ZhPgCEnTJYuRlV3xg2EMFD7Pp", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475897} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:42.951000", "date_updated": "2022-11-08T15:49:42.951000", "id": "ev_7aWgJ5vKeTdl2RbB1zaihy", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "acti_32MAr5WHnmOsYHOjucM11mMoVcrg6K3nNu3z7dux3Bt", "object_type": "activity.created", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "Created", "activity_at": "2022-11-08T12:25:18.399000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:25:18.399000+00:00", "date_updated": "2022-11-08T12:25:18.415000+00:00", "id": "acti_32MAr5WHnmOsYHOjucM11mMoVcrg6K3nNu3z7dux3Bt", "import_id": null, "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "ui", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475899} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:42.950000", "date_updated": "2022-11-08T15:49:42.950000", "id": "ev_6W4d9Bwla94c1YT7nTl2Nb", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "noti_5CwYYAqPoVjCYRZagjxdbeyEOusRDISkehgr3v1KVfV", "object_type": "task.opportunity_due", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "opportunity_due", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-17", "date_created": "2022-11-08T12:38:51.597000+00:00", "date_updated": "2022-11-08T12:38:51.597000+00:00", "id": "noti_5CwYYAqPoVjCYRZagjxdbeyEOusRDISkehgr3v1KVfV", "is_complete": false, "is_new": true, "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": "oppo_jKsuUM39hyb0lRGfX42LdnNA7gAPeg6WPGDyshYQdtd", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475901} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:42.934000", "date_updated": "2022-11-08T15:49:42.934000", "id": "ev_7eOjUvmL04QvHLxW4UeHLd", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "acti_gdEJ9MEBXycdmPViSYFS92PYJyQqIGTgx0iP0PvDutQ", "object_type": "activity.note", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "Note", "activity_at": "2022-11-08T12:26:32.324000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:26:32.324000+00:00", "date_updated": "2022-11-08T12:26:34.786000+00:00", "id": "acti_gdEJ9MEBXycdmPViSYFS92PYJyQqIGTgx0iP0PvDutQ", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "note": "Test note", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475902} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:42.907000", "date_updated": "2022-11-08T15:49:42.907000", "id": "ev_2YbHjExjal4lwQ82u9jqFD", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "task_xKiuX4ZjnL2zRUlNWFjPbupKofLLhYkLPsDdEnsLBMb", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-08", "date_created": "2022-11-08T12:38:32.187000+00:00", "date_updated": "2022-11-08T12:38:32.187000+00:00", "due_date": "2022-11-08", "id": "task_xKiuX4ZjnL2zRUlNWFjPbupKofLLhYkLPsDdEnsLBMb", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475904} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:42.876000", "date_updated": "2022-11-08T15:49:42.876000", "id": "ev_1LrDU6Cc7B9e215H0q8iSd", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "acti_HZwfZd2NtUbwSXTUsxMhMLGDltDnYSoVhGTa26NgY1I", "object_type": "activity.created", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "Created", "activity_at": "2022-11-08T12:38:24.066000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:38:24.066000+00:00", "date_updated": "2022-11-08T12:38:24.084000+00:00", "id": "acti_HZwfZd2NtUbwSXTUsxMhMLGDltDnYSoVhGTa26NgY1I", "import_id": null, "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "ui", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475906} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:42.815000", "date_updated": "2022-11-08T15:49:42.815000", "id": "ev_7ivXJn8OfNOodruqb5xJ7N", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "cont_XZV5fWf7skLHu1NrWmcu2Bb5T2hjFx1wMm3YKh4Pvdh", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:25:18.403000+00:00", "date_updated": "2022-11-08T12:25:18.403000+00:00", "emails": [], "id": "cont_XZV5fWf7skLHu1NrWmcu2Bb5T2hjFx1wMm3YKh4Pvdh", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "name": "Company 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475908} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:49:42.731000", "date_updated": "2022-11-08T15:49:42.731000", "id": "ev_0UuEbqBzwxQi9pjP3Ml74h", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "cont_qs64s6KtlTtHuDUfftdGRYnHE6tdU8GIGdPr1zurKz1", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:38:24.071000+00:00", "date_updated": "2022-11-08T12:38:24.071000+00:00", "emails": [], "id": "cont_qs64s6KtlTtHuDUfftdGRYnHE6tdU8GIGdPr1zurKz1", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "name": "Test Lead 2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475910} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads", "n_objects", "status"], "data": {"bulk_object_type": "lead", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:49:38.627000+00:00", "date_updated": "2022-11-08T15:49:42.212000+00:00", "id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52", "n_leads": 3, "n_leads_processed": 0, "n_objects": 3, "n_objects_processed": 0, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "lead", "type": "object_type"}, {"negate": false, "queries": [{"negate": false, "queries": [{"condition": {"before": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "end"}, "on_or_after": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "start"}, "type": "moment_range"}, "field": {"field_name": "date_created", "object_type": "lead", "type": "regular_field"}, "negate": false, "type": "field_condition"}], "type": "and"}], "type": "and"}], "type": "and"}, "send_done_email": true, "sort": [], "status": "processing", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:49:41.320000", "date_updated": "2022-11-08T15:49:42.214000", "id": "ev_5JBIgnjqvvd3sjvdCpb2Tp", "lead_id": null, "meta": {"bulk_action_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52"}, "object_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52", "object_type": "bulk_action.delete", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:49:38.627000+00:00", "n_leads": null, "n_objects": null, "status": "created"}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475912} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"bulk_object_type": "lead", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:49:38.627000+00:00", "date_updated": "2022-11-08T15:49:38.627000+00:00", "id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52", "n_leads": null, "n_leads_processed": 0, "n_objects": null, "n_objects_processed": 0, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "lead", "type": "object_type"}, {"negate": false, "queries": [{"negate": false, "queries": [{"condition": {"before": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "end"}, "on_or_after": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "start"}, "type": "moment_range"}, "field": {"field_name": "date_created", "object_type": "lead", "type": "regular_field"}, "negate": false, "type": "field_condition"}], "type": "and"}], "type": "and"}], "type": "and"}, "send_done_email": true, "sort": [], "status": "created", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:49:38.630000", "date_updated": "2022-11-08T15:49:38.630000", "id": "ev_56QxI5UrlqlZ0neD4xAsMS", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/bulk_action/delete/"}, "object_id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52", "object_type": "bulk_action.delete", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_10PxohqYOvE1AeDQBYwlAu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475914} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:45:08.951000", "date_updated": "2022-11-08T15:45:08.951000", "id": "ev_17cX5HF569gRxd0Z25AkUg", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "DELETE", "request_path": "/api/v1/activity/call/acti_5VyvfRIrzD2ufdY1O5nWGJpJMMuN7DNjxTMmygrFoKv/"}, "object_id": "acti_5VyvfRIrzD2ufdY1O5nWGJpJMMuN7DNjxTMmygrFoKv", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "Call", "activity_at": "2022-11-08T15:45:01.299000+00:00", "call_method": "external", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:45:01.299000+00:00", "date_updated": "2022-11-08T15:45:01.299000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_5VyvfRIrzD2ufdY1O5nWGJpJMMuN7DNjxTMmygrFoKv", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "External", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "request_id": "req_6wxzK8vbwwUNXgbNjL25EZ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475916} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "status"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:45:04.639000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:44:42.011000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:45:04.639000+00:00", "date_updated": "2022-11-08T15:45:04.640000+00:00", "direction": "outbound", "error_message": null, "id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:45:04.642000", "date_updated": "2022-11-08T15:45:04.642000", "id": "ev_3OxLOF5cSjyxH54LhUcIpg", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:44:42.011000+00:00", "date_sent": null, "date_updated": "2022-11-08T15:45:03.787000+00:00", "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475918} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:45:04.639000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:44:42.011000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:45:04.639000+00:00", "date_updated": "2022-11-08T15:45:04.640000+00:00", "direction": "outbound", "error_message": null, "id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:45:04.642000", "date_updated": "2022-11-08T15:45:04.642000", "id": "ev_0OMxbkyY1DJ9CuuqCdKjte", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413475920} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:44:42.011000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:44:42.011000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:45:03.787000+00:00", "direction": "outbound", "error_message": null, "id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:45:03.789000", "date_updated": "2022-11-08T15:45:03.789000", "id": "ev_0ZZG6EQxdYCwf1VRZU2ssx", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-08T15:44:51.226000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413475921} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-08T15:45:01.299000+00:00", "call_method": "external", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:45:01.299000+00:00", "date_updated": "2022-11-08T15:45:01.299000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_5VyvfRIrzD2ufdY1O5nWGJpJMMuN7DNjxTMmygrFoKv", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "External", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:45:01.300000", "date_updated": "2022-11-08T15:45:01.300000", "id": "ev_3FDPahyDxYoXzkRKf3sac6", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/call/"}, "object_id": "acti_5VyvfRIrzD2ufdY1O5nWGJpJMMuN7DNjxTMmygrFoKv", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_4VGM99TMzEkCdf4fPlkjao", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476642} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "template_id", "text"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:44:42.011000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:44:42.011000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:44:51.226000+00:00", "direction": "outbound", "error_message": null, "id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:44:46.774000", "date_updated": "2022-11-08T15:44:51.228000", "id": "ev_4NWYeTTlGpS6lkr1HHVYxi", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q/"}, "object_id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:44:42.011000+00:00", "status": "draft", "template_id": "", "text": ""}, "request_id": "req_6tmsytxwayPnjCwhWFYfZG", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476644} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:44:42.011000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:44:42.011000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:44:42.011000+00:00", "direction": "outbound", "error_message": null, "id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:44:42.013000", "date_updated": "2022-11-08T15:44:42.013000", "id": "ev_25mvEudAz2gTdgbc8w6TUL", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_GZs8fnu859jbSuV6jTVhgUwx1oBOhlUhh1JCeYHsS7q", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2HIkMtDjMasmKfCauwbk4t", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476647} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_scheduled", "date_updated", "status", "text"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:01:55.510000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:55.510000+00:00", "date_scheduled": "2022-11-09T07:00:00+00:00", "date_sent": null, "date_updated": "2022-11-08T15:44:34.783000+00:00", "direction": "outbound", "error_message": null, "id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "scheduled", "template_id": "", "text": "Test message", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:44:30.032000", "date_updated": "2022-11-08T15:44:34.785000", "id": "ev_2r3ksZOrA7XEHyHJdT47rs", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x/"}, "object_id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_scheduled": null, "date_updated": "2022-11-08T15:44:28.785000+00:00", "status": "draft", "text": "Test"}, "request_id": "req_7aQmW5xDix0Y1Z34AE3aW1", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476649} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "text"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:01:55.510000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:55.510000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:44:27.549000+00:00", "direction": "outbound", "error_message": null, "id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "Test", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:44:27.551000", "date_updated": "2022-11-08T15:44:27.551000", "id": "ev_2EdohTy5OyMaUcA0o6Svqq", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x/"}, "object_id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:01:55.510000+00:00", "text": ""}, "request_id": "req_7hritBslpcBEJlmBfwJwuo", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476651} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:44:17.804000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:44:17.804000+00:00", "date_updated": "2022-11-08T15:44:19.328000+00:00", "email_ids": ["acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs"], "id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "latest_normalized_subject": "(no subject)", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T15:44:19.331000", "date_updated": "2022-11-08T15:44:19.331000", "id": "ev_1aYuqsDhgmgKnmud54QxX7", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:43:48.820000+00:00", "date_created": "2022-11-08T15:43:48.820000+00:00", "date_updated": "2022-11-08T15:44:05.123000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476653} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T15:44:17.803000+00:00", "attachments": [], "bcc": [], "body_html": "Test", "body_preview": "Test", "body_text": "Test", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.819000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:44:17.803000+00:00", "date_updated": "2022-11-08T15:44:19.299000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:44:18 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792225784.2629.13990873364570888607@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "(no subject)", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166792225784.2629.13990873364570888607@smtpgw.close.com>", "<166792225784.2629.12825104744076060180@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "(no subject)", "template_id": null, "template_name": null, "thread_id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:44:19.302000", "date_updated": "2022-11-08T15:44:19.302000", "id": "ev_4BN7x20enlOwY9sEfMH2d5", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476655} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status"], "data": {"_type": "Email", "activity_at": "2022-11-08T15:44:17.803000+00:00", "attachments": [], "bcc": [], "body_html": "Test", "body_preview": "Test", "body_text": "Test", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.819000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:44:17.803000+00:00", "date_updated": "2022-11-08T15:44:19.299000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:44:18 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792225784.2629.13990873364570888607@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "(no subject)", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166792225784.2629.13990873364570888607@smtpgw.close.com>", "<166792225784.2629.12825104744076060180@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "(no subject)", "template_id": null, "template_name": null, "thread_id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:44:19.302000", "date_updated": "2022-11-08T15:44:19.302000", "id": "ev_2X9yaM4rWS6PYAYKXIJLvE", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:43:48.819000+00:00", "date_sent": null, "date_updated": "2022-11-08T15:44:05.128000+00:00", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:43:48 -0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "(no subject)", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "message_ids": [], "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476657} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "email_followup", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "Test", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-15", "date_created": "2022-11-08T15:44:05.221000+00:00", "date_updated": "2022-11-08T15:44:05.221000+00:00", "email_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "id": "noti_3I4QaKqYel0nzGyKT8mpDKy4q2KKu4IuIZZ3Gb7gs4x", "is_complete": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "(no subject)", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-08T15:44:05.222000", "date_updated": "2022-11-08T15:44:05.222000", "id": "ev_0WD1lYbUeo9VuQTYPDouca", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs/"}, "object_id": "noti_3I4QaKqYel0nzGyKT8mpDKy4q2KKu4IuIZZ3Gb7gs4x", "object_type": "task.email_followup", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_07war6cU7ByuIulpwNIPeQ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476659} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:44:05.209000", "date_updated": "2022-11-08T15:44:05.209000", "id": "ev_2RFuvzAfVIPZ1dUtPo15x2", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs/"}, "object_id": "acti_FFWbMYg4t16GpjPuV00vPq8m8ut9kuFQ0hdv8B2fNfb", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:43:48.820000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.820000+00:00", "date_updated": "2022-11-08T15:43:56.690000+00:00", "email_ids": [], "id": "acti_FFWbMYg4t16GpjPuV00vPq8m8ut9kuFQ0hdv8B2fNfb", "latest_normalized_subject": "", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "request_id": "req_07war6cU7ByuIulpwNIPeQ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476661} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "envelope", "status", "subject", "thread_id"], "data": {"_type": "Email", "activity_at": "2022-11-08T15:43:48.819000+00:00", "attachments": [], "bcc": [], "body_html": "Test", "body_preview": "Test", "body_text": "Test", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.819000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:44:05.128000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:43:48 -0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "(no subject)", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "(no subject)", "template_id": null, "template_name": null, "thread_id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:44:05.130000", "date_updated": "2022-11-08T15:44:05.130000", "id": "ev_2TlB2BgErWjZ6llmdKxaXa", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs/"}, "object_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:43:56.673000+00:00", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:43:48 -0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "status": "draft", "subject": "", "thread_id": "acti_FFWbMYg4t16GpjPuV00vPq8m8ut9kuFQ0hdv8B2fNfb"}, "request_id": "req_07war6cU7ByuIulpwNIPeQ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476663} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:43:48.820000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.820000+00:00", "date_updated": "2022-11-08T15:44:05.123000+00:00", "email_ids": ["acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs"], "id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "latest_normalized_subject": "(no subject)", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T15:44:05.125000", "date_updated": "2022-11-08T15:44:05.125000", "id": "ev_2KKn22maUvg7Pe6VuNpsfP", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs/"}, "object_id": "acti_NK92jfBZlqmHvmGsKMa1rSH4mXfORzm45CG7RycCyMK", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_07war6cU7ByuIulpwNIPeQ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476665} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["body_html", "body_preview", "body_text", "date_updated", "envelope"], "data": {"_type": "Email", "activity_at": "2022-11-08T15:43:48.819000+00:00", "attachments": [], "bcc": [], "body_html": "Test", "body_preview": "Test", "body_text": "Test", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.819000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:43:56.673000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:43:48 -0000", "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "", "template_id": null, "template_name": null, "thread_id": "acti_FFWbMYg4t16GpjPuV00vPq8m8ut9kuFQ0hdv8B2fNfb", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:43:53.106000", "date_updated": "2022-11-08T15:43:56.675000", "id": "ev_31fDLDT9NAMsDbfKA4t9AD", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs/"}, "object_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"body_html": "", "body_preview": null, "body_text": "", "date_updated": "2022-11-08T15:43:48.829000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "", "to": [{"email": "thedarkknight@close.com", "name": ""}]}}, "request_id": "req_5Lw6YbQtfyezIRyLSV9k0r", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476667} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T15:43:48.819000+00:00", "attachments": [], "bcc": [], "body_html": "", "body_preview": null, "body_text": "", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.819000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:43:48.829000+00:00", "direction": "outgoing", "email_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "subject": "", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "", "template_id": null, "template_name": null, "thread_id": "acti_FFWbMYg4t16GpjPuV00vPq8m8ut9kuFQ0hdv8B2fNfb", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:43:48.830000", "date_updated": "2022-11-08T15:43:48.830000", "id": "ev_3mOuL7jTg3W0xO08QBUvVR", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_58Zsdur3Exl0VRTtSmM34r", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476669} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:43:48.820000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:43:48.820000+00:00", "date_updated": "2022-11-08T15:43:48.825000+00:00", "email_ids": ["acti_tDbd3J7HQmX2I5dBWJSXrlwCdKpZedpsTdAWLsYPzUs"], "id": "acti_FFWbMYg4t16GpjPuV00vPq8m8ut9kuFQ0hdv8B2fNfb", "latest_normalized_subject": "", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T15:43:48.827000", "date_updated": "2022-11-08T15:43:48.827000", "id": "ev_1sWbGK8i6vpG582tIQY86p", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_FFWbMYg4t16GpjPuV00vPq8m8ut9kuFQ0hdv8B2fNfb", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_58Zsdur3Exl0VRTtSmM34r", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476671} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T15:43:38.471000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:07:41.553000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:10:30.843000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:13:05.125000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:15:47.492000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "85.209.47.207", "opened_at": "2022-11-08T15:43:38.471000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (5+ times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:43:38.473000", "date_updated": "2022-11-08T15:43:38.473000", "id": "ev_3B3yLrq03kYrVDu3vi2A54", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:15:47.492000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:07:41.553000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:10:30.843000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:13:05.125000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:15:47.492000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}]}, "request_id": "req_7fp1fPs0ACR0fWRg6BPEDc", "user_id": null}, "emitted_at": 1670413476673} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_created", "date_updated", "emails"], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "cleared_followups": [], "contact_id": null, "created_by": null, "created_by_name": null, "date": "2022-11-08T15:21:52+00:00", "date_created": "2022-11-08T15:21:52+00:00", "date_updated": "2022-11-08T15:22:03.794000+00:00", "emails": ["acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs"], "id": "noti_9IHsSYqeUsxtZHI3umO2tpFpCCs5lou3KuMsVxmSKMV", "is_complete": false, "is_new": true, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "lead_name": "Bluth Company (Example\u00a0Lead)", "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Delivery Status Notification (Failure)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-08T15:22:03.800000", "date_updated": "2022-11-08T15:22:03.800000", "id": "ev_5nMmIRc78B6kog8eZzFkQ4", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "noti_9IHsSYqeUsxtZHI3umO2tpFpCCs5lou3KuMsVxmSKMV", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-08T12:58:48+00:00", "date_created": "2022-11-08T12:58:48+00:00", "date_updated": "2022-11-08T13:00:58.979000+00:00", "emails": ["acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr"]}, "request_id": null, "user_id": null}, "emitted_at": 1670413476675} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "paused_by_activity_id", "status", "status_reason"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "bluth@close.com", "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:50.524698", "date_updated": "2022-11-08T15:22:03.707426", "id": "sub_77gWyXwSd44zuQaciQYW0O", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "error", "status_reason": "email-bounced", "step_last_processed_at": "2022-11-08T15:21:48.934327", "updated_by_id": null}, "date_created": "2022-11-08T15:22:03.707000", "date_updated": "2022-11-08T15:22:03.707000", "id": "ev_0jV0BLvTPq4fTMqu4pjkg9", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "sub_77gWyXwSd44zuQaciQYW0O", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:21:49.382953", "paused_by_activity_id": null, "status": "active", "status_reason": null}, "request_id": null, "user_id": null}, "emitted_at": 1670413476677} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "paused_by_activity_id", "status", "status_reason", "updated_by_id"], "data": {"calls_assigned_to": [], "contact_email": "bluth@close.com", "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:08.800188", "date_updated": "2022-11-08T15:22:03.703891", "id": "sub_5AqfaB02KqNgXDUU2wQKy5", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "error", "status_reason": "email-bounced", "step_last_processed_at": null, "updated_by_id": null}, "date_created": "2022-11-08T15:22:03.703000", "date_updated": "2022-11-08T15:22:03.703000", "id": "ev_0fFdR50oYPzG8gy6UTQsnC", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "sub_5AqfaB02KqNgXDUU2wQKy5", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:09.356667", "paused_by_activity_id": null, "status": "active", "status_reason": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413476679} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T15:22:03.592000", "date_updated": "2022-11-08T15:22:03.592000", "id": "ev_5HaE00asA8vRHs4HaoYZ6u", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:21:48.935000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:21:48.935000+00:00", "date_updated": "2022-11-08T15:21:52.162000+00:00", "email_ids": ["acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp"], "id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "latest_normalized_subject": "Bluth Company (Example Lead) + Airbyte", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "request_id": null, "user_id": null}, "emitted_at": 1670413476681} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "latest_normalized_subject", "n_emails", "participants"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:21:52.001000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:21:52.001000+00:00", "date_updated": "2022-11-08T15:22:03.526000+00:00", "email_ids": ["acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x"], "id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "latest_normalized_subject": "Delivery Status Notification (Failure)", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 4, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T15:22:03.530000", "date_updated": "2022-11-08T15:22:03.530000", "id": "ev_6Y98N12NB2k0WRf4qkxTYD", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T12:58:48.001000+00:00", "date_created": "2022-11-08T12:58:48.001000+00:00", "date_updated": "2022-11-08T13:00:58.808000+00:00", "latest_normalized_subject": "Delivery Status Notification (Failure)", "n_emails": 2, "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "request_id": null, "user_id": null}, "emitted_at": 1670413476683} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T15:21:52+00:00", "attachments": [{"content_id": "", "content_type": "image/png", "filename": "icon.png", "size": 1450}], "bcc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: Jean Lafleur <iryna.grankova@airbyte.io>
\nSubject: Bluth Company (Example\u00a0Lead) + Airbyte
\nDate: Tue, 08 Nov 2022 15:21:50 +0000
\nTo: Gob Bluth <bluth@close.com>
\n
\nHi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
\"\"

", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "body_text": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer/6596\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\nFrom: Jean Lafleur \nSubject: Bluth Company (Example\u00a0Lead) + Airbyte\nDate: Tue, 08 Nov 2022 15:21:50 +0000\nTo: Gob Bluth \n\nHi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:21:52+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:22:03.515000+00:00", "direction": "incoming", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 07:21:52 -0800 (PST)", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "in_reply_to": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "is_autoreply": true, "message_id": "<636a7410.630a0220.27b8e.b6e2.GMR@mx.google.com>", "reply_to": [], "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "subject": "Delivery Status Notification (Failure)", "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<636a7410.630a0220.27b8e.b6e2.GMR@mx.google.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": ["<166792090941.10645.8722656406065573871@smtpgw.close.com>", "<166792090941.10645.3407832652098417673@smtpgw.close.com>"], "send_as_id": null, "send_attempts": [], "sender": "Mail Delivery Subsystem ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Delivery Status Notification (Failure)", "template_id": null, "template_name": null, "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["iryna.grankova@airbyte.io"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:22:03.518000", "date_updated": "2022-11-08T15:22:03.518000", "id": "ev_2boNBcUFHdfrarXojiPqsJ", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_GL7cU90GDGioV1bSbUHirloT9mzJecTpY4dIug4BlDs", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413476685} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "thread_id"], "data": {"_type": "Email", "activity_at": "2022-11-08T15:21:48.934000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show y", "body_text": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:21:49.243000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:21:48.934000+00:00", "date_updated": "2022-11-08T15:22:03.271000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:21:50 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "to": [{"email": "bluth@close.com", "name": "Gob Bluth"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<166792090941.10645.3407832652098417673@smtpgw.close.com>", "<166792090941.10645.8722656406065573871@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T15:21:52.108000+00:00", "opened_by": "Gob Bluth ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}], "opens_summary": "Opened by Gob Bluth (2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_77gWyXwSd44zuQaciQYW0O", "status": "sent", "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["Gob Bluth "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:22:03.288000", "date_updated": "2022-11-08T15:22:03.288000", "id": "ev_3Yz3aoWtnyJdPTiFwzXC6f", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:21:52.108000+00:00", "thread_id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr"}, "request_id": null, "user_id": null}, "emitted_at": 1670413476686} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T15:21:48.934000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show y", "body_text": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:21:49.243000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:21:48.934000+00:00", "date_updated": "2022-11-08T15:21:52.108000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:21:50 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "to": [{"email": "bluth@close.com", "name": "Gob Bluth"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<166792090941.10645.3407832652098417673@smtpgw.close.com>", "<166792090941.10645.8722656406065573871@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.23", "opened_at": "2022-11-08T15:21:52.108000+00:00", "opened_by": "Gob Bluth ", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}], "opens_summary": "Opened by Gob Bluth (2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_77gWyXwSd44zuQaciQYW0O", "status": "sent", "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "to": ["Gob Bluth "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:21:52.110000", "date_updated": "2022-11-08T15:21:52.110000", "id": "ev_42cUkCSxWlHBegtxkXmDY4", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"request_method": "GET", "request_path": "/t/AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp/DIwaIsCbZM.png"}, "object_id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:21:50.827000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_4OapVGddsfUPHCXMmrO7lJ", "user_id": null}, "emitted_at": 1670413476689} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_completed", "date_sent", "date_updated", "message_id", "status"], "data": {"created_by": null, "date_completed": "2022-11-08T15:21:48.934327", "date_created": "2022-11-08T15:21:48.934327", "date_sent": "2022-11-08T15:21:48.934327", "date_updated": "2022-11-08T15:21:50.971527", "email_id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "id": "subhis_0fPYvvoq8fe1rMK6vgipeb", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_id": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_77gWyXwSd44zuQaciQYW0O", "status": "completed", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T15:21:50.971000", "date_updated": "2022-11-08T15:21:50.971000", "id": "ev_33L4KM1hTTcrC6cqZedbYl", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "subhis_0fPYvvoq8fe1rMK6vgipeb", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_completed": null, "date_sent": null, "date_updated": "2022-11-08T15:21:49.397029", "message_id": null, "status": "pending"}, "request_id": null, "user_id": null}, "emitted_at": 1670413476691} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "updated_by", "updated_by_name"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:21:48.935000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:21:48.935000+00:00", "date_updated": "2022-11-08T15:21:50.867000+00:00", "email_ids": ["acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp"], "id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "latest_normalized_subject": "Bluth Company (Example Lead) + Airbyte", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T15:21:50.869000", "date_updated": "2022-11-08T15:21:50.869000", "id": "ev_6dC4NjbHyUs8uijXycqM2P", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:21:49.244000+00:00", "date_created": "2022-11-08T15:21:49.244000+00:00", "date_updated": "2022-11-08T15:21:49.249000+00:00", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476693} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status", "updated_by", "updated_by_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T15:21:48.934000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show y", "body_text": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:21:49.243000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:21:48.934000+00:00", "date_updated": "2022-11-08T15:21:50.827000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:21:50 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "to": [{"email": "bluth@close.com", "name": "Gob Bluth"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<166792090941.10645.3407832652098417673@smtpgw.close.com>", "<166792090941.10645.8722656406065573871@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_77gWyXwSd44zuQaciQYW0O", "status": "sent", "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "to": ["Gob Bluth "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:21:50.830000", "date_updated": "2022-11-08T15:21:50.830000", "id": "ev_6ZKu4fkiG7shAfHVuOZfvl", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:21:49.243000+00:00", "date_sent": null, "date_updated": "2022-11-08T15:21:49.253000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "to": [{"email": "bluth@close.com", "name": "Gob Bluth"}]}, "message_ids": [], "status": "outbox", "updated_by": null, "updated_by_name": null}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476694} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T15:21:48.934000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show y", "body_text": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:21:49.243000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:21:48.934000+00:00", "date_updated": "2022-11-08T15:21:50.827000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 15:21:50 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166792090941.10645.3407832652098417673@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "to": [{"email": "bluth@close.com", "name": "Gob Bluth"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<166792090941.10645.3407832652098417673@smtpgw.close.com>", "<166792090941.10645.8722656406065573871@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sequence_name": "Sequence 1", "sequence_subscription_id": "sub_77gWyXwSd44zuQaciQYW0O", "status": "sent", "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "to": ["Gob Bluth "], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:21:50.830000", "date_updated": "2022-11-08T15:21:50.830000", "id": "ev_3yKP5Q6KrToTXflME75aRD", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476696} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": null, "date_completed": null, "date_created": "2022-11-08T15:21:48.934327", "date_sent": null, "date_updated": "2022-11-08T15:21:49.397029", "email_id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "id": "subhis_0fPYvvoq8fe1rMK6vgipeb", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "sequence_subscription_id": "sub_77gWyXwSd44zuQaciQYW0O", "status": "pending", "step_id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "updated_by": null}, "date_created": "2022-11-08T15:21:49.397000", "date_updated": "2022-11-08T15:21:49.397000", "id": "ev_2etmSeQuZpaUV8V1OnTweX", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "subhis_0fPYvvoq8fe1rMK6vgipeb", "object_type": "subscription_history", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413476698} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "step_last_processed_at", "updated_by_id"], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "bluth@close.com", "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:50.524698", "date_updated": "2022-11-08T15:21:49.382953", "id": "sub_77gWyXwSd44zuQaciQYW0O", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": "2022-11-08T15:21:48.934327", "updated_by_id": null}, "date_created": "2022-11-08T15:21:49.382000", "date_updated": "2022-11-08T15:21:49.382000", "id": "ev_6njYIP9SC1ESh1zws71FGo", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "sub_77gWyXwSd44zuQaciQYW0O", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:50.758735", "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "request_id": null, "user_id": null}, "emitted_at": 1670413476700} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T15:21:49.243000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Gob,

I'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth Company (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show y", "body_text": "Hi Gob, \n \nI'm Jean with Airbyte. We help companies in the Real estate space [INSERT YOUR\nPRODUCT/SERVICE]. I wanted to learn how you handle this currently at Bluth\nCompany (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:21:49.243000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:21:49.253000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "to": [{"email": "bluth@close.com", "name": "Gob Bluth"}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Bluth Company (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "to": ["Gob Bluth "], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:21:49.254000", "date_updated": "2022-11-08T15:21:49.254000", "id": "ev_1DdXK7xTfNtejbRklExPpc", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413476702} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T15:21:49.244000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T15:21:49.244000+00:00", "date_updated": "2022-11-08T15:21:49.249000+00:00", "email_ids": ["acti_AiN0xVV0ZqsaXF2lowGGjtav6fPvWMVvuqCd5ihHLtp"], "id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "latest_normalized_subject": "Bluth Company (Example Lead) + Airbyte", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T15:21:49.251000", "date_updated": "2022-11-08T15:21:49.251000", "id": "ev_4fAEQvJepup3MlUagH8SnE", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_rmjK1wsSPo2zOD3d8x5mniRj1rOJb2ybMwz9qwOj8Vr", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413476704} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date", "date_updated", "due_date", "view"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-15", "date_created": "2022-11-08T12:25:32.733000+00:00", "date_updated": "2022-11-08T15:18:00.018000+00:00", "due_date": "2022-11-15", "id": "task_gwhiRc96yDf2eXxh31ZhPgCEnTJYuRlV3xg2EMFD7Pp", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-08T15:18:00.020000", "date_updated": "2022-11-08T15:18:00.020000", "id": "ev_6ZvaXMIWjdiYVjVJ0OEIXh", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "task_gwhiRc96yDf2eXxh31ZhPgCEnTJYuRlV3xg2EMFD7Pp", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date": "2022-11-08", "date_updated": "2022-11-08T12:25:32.733000+00:00", "due_date": "2022-11-08", "view": "inbox"}, "request_id": "req_2r7jYXmWGpb5nK5lwfRV7T", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476706} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T15:15:47.492000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:07:41.553000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:10:30.843000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:13:05.125000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:15:47.492000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (5+ times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:15:47.494000", "date_updated": "2022-11-08T15:15:47.494000", "id": "ev_5xK2sMEXL0quzrJjXnodn4", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:13:05.125000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:07:41.553000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:10:30.843000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:13:05.125000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}]}, "request_id": "req_7i07j5tiA62KgOHMQfNTPo", "user_id": null}, "emitted_at": 1670413476708} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-19T09:00:00+00:00", "date_created": "2022-11-08T15:13:22.159000+00:00", "date_updated": "2022-11-08T15:13:22.159000+00:00", "due_date": "2022-11-19T09:00:00+00:00", "id": "task_pIYI4An2qA84qea5mCLggCL0dZ8QIk2c2YrzoqSV8fd", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-08T15:13:22.161000", "date_updated": "2022-11-08T15:13:22.161000", "id": "ev_3shWck6eJBVicnBNEhiSh5", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_pIYI4An2qA84qea5mCLggCL0dZ8QIk2c2YrzoqSV8fd", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_4BUFf4bTplOJxgJJJ1fREn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476710} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-30T08:00:00+00:00", "date_created": "2022-11-08T15:13:13.470000+00:00", "date_updated": "2022-11-08T15:13:13.470000+00:00", "due_date": "2022-11-30T08:00:00+00:00", "id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-08T15:13:13.472000", "date_updated": "2022-11-08T15:13:13.472000", "id": "ev_5tuyPgUd4HLapGag104bvZ", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_hMgl18LN4kAUM7XWO4fYlu3amtKadZahsb7OV9J5qWD", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0tqFWFUvCDMpqiL845siLU", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476712} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T15:13:05.125000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:07:41.553000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:10:30.843000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:13:05.125000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (5+ times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:13:05.127000", "date_updated": "2022-11-08T15:13:05.127000", "id": "ev_57MqFYNkZC33TY1qHEZbKL", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:30.843000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:07:41.553000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:10:30.843000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}]}, "request_id": "req_7A1xOq9i9rIfqgTQLwod17", "user_id": null}, "emitted_at": 1670413476714} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-08T08:00:00+00:00", "date_created": "2022-11-08T15:10:57.220000+00:00", "date_updated": "2022-11-08T15:10:57.220000+00:00", "due_date": "2022-11-08T08:00:00+00:00", "id": "task_Wgzt6t0ZGRlvZTnfhSfxHoFRWm6zXBMuuecKxRkfYmZ", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "date_created": "2022-11-08T15:10:57.222000", "date_updated": "2022-11-08T15:10:57.222000", "id": "ev_6XIHY7y0JACzRvTtmxrLrh", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_Wgzt6t0ZGRlvZTnfhSfxHoFRWm6zXBMuuecKxRkfYmZ", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_13kN23IfqKXwvcbw2Ed0XE", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476716} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T15:10:30.843000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:07:41.553000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:10:30.843000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (5+ times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:10:30.844000", "date_updated": "2022-11-08T15:10:30.844000", "id": "ev_2M7LEG1NwZcYwYXzOAXNGE", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:07:41.553000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:07:41.553000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}]}, "request_id": "req_0JKwLUXZgrsKj4uwE2ADw9", "user_id": null}, "emitted_at": 1670413476718} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"action_type": "subscribe", "calls_assigned_to": [], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:57.014000+00:00", "date_updated": "2022-11-08T15:10:17.831000+00:00", "id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "n_leads": 11, "n_leads_processed": 11, "n_objects": 11, "n_objects_processed": 11, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sort": [], "status": "done", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:17.910000", "date_updated": "2022-11-08T15:10:17.910000", "id": "ev_7LS7sHd8TLLsTmhB5c5ZXR", "lead_id": null, "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476720} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads_processed", "n_objects_processed", "status"], "data": {"action_type": "subscribe", "calls_assigned_to": [], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:57.014000+00:00", "date_updated": "2022-11-08T15:10:17.831000+00:00", "id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "n_leads": 11, "n_leads_processed": 11, "n_objects": 11, "n_objects_processed": 11, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sort": [], "status": "done", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:13.013000", "date_updated": "2022-11-08T15:10:17.910000", "id": "ev_2sxuQoPLclCM4yT2SKDrRu", "lead_id": null, "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:11.632000+00:00", "n_leads_processed": 5, "n_objects_processed": 5, "status": "processing"}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476722} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": [], "contact_email": "thedarkknight@close.com", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:15.902085", "date_updated": "2022-11-08T15:10:15.902088", "id": "sub_7mCfXm4Y3eZajJp0rkjwFU", "initial_email_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:15.902000", "date_updated": "2022-11-08T15:10:15.902000", "id": "ev_7M8t0OtblxNHoDfmSS0YYt", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "sub_7mCfXm4Y3eZajJp0rkjwFU", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476724} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": [], "contact_email": "sales@close.com", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:14.589854", "date_updated": "2022-11-08T15:10:14.589857", "id": "sub_3AChiei0PuAIJ1X0OWnWNR", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:14.589000", "date_updated": "2022-11-08T15:10:14.589000", "id": "ev_5dApKOJ2XXyM97aO2fmvq7", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "sub_3AChiei0PuAIJ1X0OWnWNR", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476726} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": [], "contact_email": "support@close.com", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:12.582772", "date_updated": "2022-11-08T15:10:12.582778", "id": "sub_7Zv78mWCJuul1Ipd4EDE32", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:12.582000", "date_updated": "2022-11-08T15:10:12.582000", "id": "ev_1Be2WlW0FpNRrnftW4JJU4", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "sub_7Zv78mWCJuul1Ipd4EDE32", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476728} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads_processed", "n_objects_processed"], "data": {"action_type": "subscribe", "calls_assigned_to": [], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:57.014000+00:00", "date_updated": "2022-11-08T15:10:11.632000+00:00", "id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "n_leads": 11, "n_leads_processed": 5, "n_objects": 11, "n_objects_processed": 5, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sort": [], "status": "processing", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:07.134000", "date_updated": "2022-11-08T15:10:11.637000", "id": "ev_7X2R0NZC1ThFI9h9Ktfd9o", "lead_id": null, "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:10:05.687000+00:00", "n_leads_processed": 0, "n_objects_processed": 0}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476729} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": [], "contact_email": "tobiasfunke@close.com", "contact_id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:11.239696", "date_updated": "2022-11-08T15:10:11.239699", "id": "sub_1rgSspOohLocAaucazbFbB", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:11.239000", "date_updated": "2022-11-08T15:10:11.239000", "id": "ev_5qEaXgcdkVYz6WgtUxRGB4", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "sub_1rgSspOohLocAaucazbFbB", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476731} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": [], "contact_email": "nick@close.com", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:10.011072", "date_updated": "2022-11-08T15:10:10.011075", "id": "sub_3J812U6VNcZBmBDEJ1iIdX", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:10.011000", "date_updated": "2022-11-08T15:10:10.011000", "id": "ev_5kggxeS0mhEwZtk4t82jFk", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "sub_3J812U6VNcZBmBDEJ1iIdX", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476733} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": [], "contact_email": "bluth@close.com", "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:08.800188", "date_updated": "2022-11-08T15:10:08.800191", "id": "sub_5AqfaB02KqNgXDUU2wQKy5", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:08.800000", "date_updated": "2022-11-08T15:10:08.800000", "id": "ev_3rsTwUe7MG9vyp1ub6YN1u", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "sub_5AqfaB02KqNgXDUU2wQKy5", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476735} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": [], "contact_email": "success@close.com", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:10:06.399661", "date_updated": "2022-11-08T15:10:06.399664", "id": "sub_174GiA85Ui8g1OuQUrzdWe", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:06.399000", "date_updated": "2022-11-08T15:10:06.399000", "id": "ev_2uGgGxSL1uQXakASGMhluo", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "sub_174GiA85Ui8g1OuQUrzdWe", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476737} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads", "n_objects", "status"], "data": {"action_type": "subscribe", "calls_assigned_to": [], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:57.014000+00:00", "date_updated": "2022-11-08T15:10:04.414000+00:00", "id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "n_leads": 11, "n_leads_processed": 0, "n_objects": 11, "n_objects_processed": 0, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sort": [], "status": "processing", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:10:03.745000", "date_updated": "2022-11-08T15:10:04.834000", "id": "ev_7cDNgKSP8uGKvGc99O4EP2", "lead_id": null, "meta": {"bulk_action_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv"}, "object_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:57.014000+00:00", "n_leads": null, "n_objects": null, "status": "created"}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413476739} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"action_type": "subscribe", "calls_assigned_to": [], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:57.014000+00:00", "date_updated": "2022-11-08T15:09:57.014000+00:00", "id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "n_leads": null, "n_leads_processed": 0, "n_objects": null, "n_objects_processed": 0, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "sender_email": "integration-test@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "sort": [], "status": "created", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:57.018000", "date_updated": "2022-11-08T15:09:57.018000", "id": "ev_0udMKySXkGEqPxZ2VG7sEN", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/bulk_action/sequence_subscription/"}, "object_id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6oetFfxqmRAE3Ws0pOTmpn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477471} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"action_type": "subscribe", "calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:38.582000+00:00", "date_updated": "2022-11-08T15:09:55.730000+00:00", "id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "n_leads": 11, "n_leads_processed": 11, "n_objects": 11, "n_objects_processed": 11, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sort": [], "status": "done", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:55.802000", "date_updated": "2022-11-08T15:09:55.802000", "id": "ev_1Ym9tfaxulgCVHCvbD5tnV", "lead_id": null, "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477473} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads_processed", "n_objects_processed", "status"], "data": {"action_type": "subscribe", "calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:38.582000+00:00", "date_updated": "2022-11-08T15:09:55.730000+00:00", "id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "n_leads": 11, "n_leads_processed": 11, "n_objects": 11, "n_objects_processed": 11, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sort": [], "status": "done", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:50.829000", "date_updated": "2022-11-08T15:09:55.802000", "id": "ev_1EIvJzlE0XIe19xJq5gvDZ", "lead_id": null, "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:49.713000+00:00", "n_leads_processed": 4, "n_objects_processed": 4, "status": "processing"}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477475} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "support@close.com", "contact_id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:53.882456", "date_updated": "2022-11-08T15:09:53.882460", "id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:53.882000", "date_updated": "2022-11-08T15:09:53.882000", "id": "ev_1gaaBxohgeyiOxNHmw7unV", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "sub_1HBbWm3EXb2OtQYHjjIJ7d", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477477} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "success@close.com", "contact_id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:52.688271", "date_updated": "2022-11-08T15:09:52.688278", "id": "sub_06TCoNKHiRvgz5eajOG5iM", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:52.688000", "date_updated": "2022-11-08T15:09:52.688000", "id": "ev_09gKWdVdrDiTgyU6TGRTUr", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "sub_06TCoNKHiRvgz5eajOG5iM", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477479} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "bluth@close.com", "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:50.524698", "date_updated": "2022-11-08T15:09:50.524702", "id": "sub_77gWyXwSd44zuQaciQYW0O", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:50.524000", "date_updated": "2022-11-08T15:09:50.524000", "id": "ev_4orXRsAWg7PouDrGzfmRbt", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "sub_77gWyXwSd44zuQaciQYW0O", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477481} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads_processed", "n_objects_processed"], "data": {"action_type": "subscribe", "calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:38.582000+00:00", "date_updated": "2022-11-08T15:09:49.713000+00:00", "id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "n_leads": 11, "n_leads_processed": 4, "n_objects": 11, "n_objects_processed": 4, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sort": [], "status": "processing", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:44.802000", "date_updated": "2022-11-08T15:09:49.721000", "id": "ev_0BOx3l2bjoquFlb1IxHk5w", "lead_id": null, "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:44.215000+00:00", "n_leads_processed": 0, "n_objects_processed": 0}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477483} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "tobiasfunke@close.com", "contact_id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:49.320380", "date_updated": "2022-11-08T15:09:49.320385", "id": "sub_55pcJcrKsTL3fUX3ZJ3rw1", "initial_email_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:49.320000", "date_updated": "2022-11-08T15:09:49.320000", "id": "ev_42BnSJVHXYggwK7Ot2wtF8", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "sub_55pcJcrKsTL3fUX3ZJ3rw1", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477485} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "nick@close.com", "contact_id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:47.911844", "date_updated": "2022-11-08T15:09:47.911849", "id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:47.911000", "date_updated": "2022-11-08T15:09:47.911000", "id": "ev_1C0t1eFe4XVTaV0qyuNLG8", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "sub_1Ptn4uOWoiCVDsJGVdciWx", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477487} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "thedarkknight@close.com", "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:46.583319", "date_updated": "2022-11-08T15:09:46.583326", "id": "sub_5MuKAZDXfR1pHQL0xGBUp3", "initial_email_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:46.583000", "date_updated": "2022-11-08T15:09:46.583000", "id": "ev_1Y5UjmxSCkQn2h0b8nZJ1j", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "sub_5MuKAZDXfR1pHQL0xGBUp3", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477489} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_email": "sales@close.com", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:43.734431", "date_updated": "2022-11-08T15:09:43.734437", "id": "sub_5kEnI9yY80Y9mjetrZqrxn", "initial_email_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "paused_by_activity_id": null, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "start_date": null, "status": "active", "status_reason": null, "step_last_processed_at": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:43.734000", "date_updated": "2022-11-08T15:09:43.734000", "id": "ev_7BqQdEsZYUUFlB73YeIZ8V", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "sub_5kEnI9yY80Y9mjetrZqrxn", "object_type": "sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477491} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads", "n_objects", "status"], "data": {"action_type": "subscribe", "calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:38.582000+00:00", "date_updated": "2022-11-08T15:09:42.917000+00:00", "id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "n_leads": 11, "n_leads_processed": 0, "n_objects": 11, "n_objects_processed": 0, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sort": [], "status": "processing", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:41.928000", "date_updated": "2022-11-08T15:09:43.016000", "id": "ev_5fvCSQgxUaXQhxGkUAwCoz", "lead_id": null, "meta": {"bulk_action_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw"}, "object_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:09:38.582000+00:00", "n_leads": null, "n_objects": null, "status": "created"}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477492} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"action_type": "subscribe", "calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "contact_preference": "contact", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T15:09:38.582000+00:00", "date_updated": "2022-11-08T15:09:38.582000+00:00", "id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "n_leads": null, "n_leads_processed": 0, "n_objects": null, "n_objects_processed": 0, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "results_limit": null, "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "send_done_email": true, "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender_email": "iryna.grankova@airbyte.io", "sender_name": "Jean Lafleur", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "sort": [], "status": "created", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T15:09:38.584000", "date_updated": "2022-11-08T15:09:38.584000", "id": "ev_7kyi9kOFS3o5bTkg9A7fww", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/bulk_action/sequence_subscription/"}, "object_id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "object_type": "bulk_action.sequence_subscription", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6Lcef9pLs4TgObjFtctqpW", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477494} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T15:07:41.553000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:07:41.553000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (5+ times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:07:41.557000", "date_updated": "2022-11-08T15:07:41.557000", "id": "ev_6yaiLBhv81qkOzoW0WCYaR", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:00:34.029000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}]}, "request_id": "req_4PdcK5fCQSTyRevhKk3VKq", "user_id": null}, "emitted_at": 1670413477496} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "note"], "data": {"_type": "Call", "activity_at": "2022-11-08T15:02:48.288000+00:00", "call_method": "external", "contact_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:02:48.288000+00:00", "date_updated": "2022-11-08T15:02:54.131000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_UP1u6YW6eZkO2PP1M4YdPEu78ba2Rv73vmF3GJzVcgj", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "Test call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "External", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:02:52.665000", "date_updated": "2022-11-08T15:02:54.132000", "id": "ev_0k2jgHzfPgNpDY2ActdsDc", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/call/acti_UP1u6YW6eZkO2PP1M4YdPEu78ba2Rv73vmF3GJzVcgj/"}, "object_id": "acti_UP1u6YW6eZkO2PP1M4YdPEu78ba2Rv73vmF3GJzVcgj", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:02:48.288000+00:00", "note": ""}, "request_id": "req_2Xj9xLqj04GloAU6Oe8ZGD", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477498} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "status"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:02:53.603000+00:00", "attachments": [], "contact_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:02:35.118000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:02:53.603000+00:00", "date_updated": "2022-11-08T15:02:53.603000+00:00", "direction": "outbound", "error_message": null, "id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "", "text": "test", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:02:53.607000", "date_updated": "2022-11-08T15:02:53.607000", "id": "ev_6HoSRXyEgxIZ4vIQiqWBP7", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {}, "object_id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:02:35.118000+00:00", "date_sent": null, "date_updated": "2022-11-08T15:02:52.946000+00:00", "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477500} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:02:53.603000+00:00", "attachments": [], "contact_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:02:35.118000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:02:53.603000+00:00", "date_updated": "2022-11-08T15:02:53.603000+00:00", "direction": "outbound", "error_message": null, "id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "", "text": "test", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:02:53.607000", "date_updated": "2022-11-08T15:02:53.607000", "id": "ev_63FMKPP1M3XWyoXXmzNlkm", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {}, "object_id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477502} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:02:35.118000+00:00", "attachments": [], "contact_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:02:35.118000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:02:52.946000+00:00", "direction": "outbound", "error_message": null, "id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "", "text": "test", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:02:52.949000", "date_updated": "2022-11-08T15:02:52.949000", "id": "ev_3VXHqQEiBuu56FZu9C8jb0", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {}, "object_id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-08T15:02:39.799000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413477504} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Call", "activity_at": "2022-11-08T15:02:48.288000+00:00", "call_method": "external", "contact_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_answered": null, "date_created": "2022-11-08T15:02:48.288000+00:00", "date_updated": "2022-11-08T15:02:48.288000+00:00", "dialer_id": null, "dialer_saved_search_id": null, "direction": "outbound", "disposition": "answered", "duration": 0, "forwarded_to": null, "has_recording": false, "id": "acti_UP1u6YW6eZkO2PP1M4YdPEu78ba2Rv73vmF3GJzVcgj", "is_forwarded": false, "is_joinable": false, "is_to_group_number": false, "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "local_country_iso": "", "local_phone": null, "local_phone_formatted": null, "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phone": "+14156236785", "quality_info": "", "recording_expires_at": null, "recording_url": null, "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "sequence_id": null, "sequence_subscription_id": null, "source": "External", "status": "completed", "transferred_from": null, "transferred_from_user_id": null, "transferred_to": null, "transferred_to_user_id": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": [], "voicemail_duration": 0, "voicemail_url": null}, "date_created": "2022-11-08T15:02:48.291000", "date_updated": "2022-11-08T15:02:48.291000", "id": "ev_2F5QyCCruG9X2puqrqSyr3", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/call/"}, "object_id": "acti_UP1u6YW6eZkO2PP1M4YdPEu78ba2Rv73vmF3GJzVcgj", "object_type": "activity.call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0YsbOAuPqkBJpbvKesefzX", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477506} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "text"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:02:35.118000+00:00", "attachments": [], "contact_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:02:35.118000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:02:39.799000+00:00", "direction": "outbound", "error_message": null, "id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "", "text": "test", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:02:37.195000", "date_updated": "2022-11-08T15:02:39.801000", "id": "ev_0qPE9XQ1nY0hEy5PqZWOBf", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM/"}, "object_id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:02:35.118000+00:00", "status": "draft", "text": ""}, "request_id": "req_28VFH6WJHh5B37xXB8mMfa", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477508} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:02:35.118000+00:00", "attachments": [], "contact_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:02:35.118000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:02:35.118000+00:00", "direction": "outbound", "error_message": null, "id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:02:35.120000", "date_updated": "2022-11-08T15:02:35.120000", "id": "ev_5GuLHp3hBgZ9vbg0hvmRJN", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_9ccs9ErF3uKKXdV9QXJ8Y54bnrQFMOWozWH1MBPWxcM", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_56VPAsZfhsR9qZ6RQhg8bn", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477510} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "phones", "title"], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:39:18.105000+00:00", "date_updated": "2022-11-08T15:02:31.847000+00:00", "emails": [], "id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "name": "Test Lead 3", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [{"phone": "+14156236785", "phone_formatted": "+1 415-623-6785", "type": "office"}], "title": "Test lead", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T15:02:31.849000", "date_updated": "2022-11-08T15:02:31.849000", "id": "ev_7Gt8KXXVueejZX1oSuR4n2", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "PUT", "request_path": "/api/v1/contact/cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih/"}, "object_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:39:18.105000+00:00", "phones": [], "title": ""}, "request_id": "req_73FVrs6YjrHOvPe8rIVYJG", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477512} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:01:55.510000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:55.510000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:01:55.510000+00:00", "direction": "outbound", "error_message": null, "id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:01:55.512000", "date_updated": "2022-11-08T15:01:55.512000", "id": "ev_66XN7cer1DLVo98YOFiIap", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_87utjiO1VZBwuxKNThrsWehpMHQJ9fk9yYPqDze4w9x", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6nSlV0L7aBpCE9enFUPYCi", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477514} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "status"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:01:40.416000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:20.794000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:01:40.416000+00:00", "date_updated": "2022-11-08T15:01:40.416000+00:00", "direction": "outbound", "error_message": null, "id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "", "text": "Test sms", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:01:40.424000", "date_updated": "2022-11-08T15:01:40.424000", "id": "ev_5Ig4TPq0eNTBYSNqT2PUW7", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T15:01:20.794000+00:00", "date_sent": null, "date_updated": "2022-11-08T15:01:39.677000+00:00", "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477515} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:01:40.416000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:20.794000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T15:01:40.416000+00:00", "date_updated": "2022-11-08T15:01:40.416000+00:00", "direction": "outbound", "error_message": null, "id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "sent", "template_id": "", "text": "Test sms", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:01:40.424000", "date_updated": "2022-11-08T15:01:40.424000", "id": "ev_3TB1d8KVpLTVuqu9EvEgYr", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477517} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:01:20.794000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:20.794000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:01:39.677000+00:00", "direction": "outbound", "error_message": null, "id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "", "text": "Test sms", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:01:39.680000", "date_updated": "2022-11-08T15:01:39.680000", "id": "ev_6mV3wGb9Rg42nDr573YVgq", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-08T15:01:27.188000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413477519} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "text"], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:01:20.794000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:20.794000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:01:27.188000+00:00", "direction": "outbound", "error_message": null, "id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "outbox", "template_id": "", "text": "Test sms", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:01:22.918000", "date_updated": "2022-11-08T15:01:27.189000", "id": "ev_05S1GRN57LaIxQPtA6h2qf", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau/"}, "object_id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:01:20.794000+00:00", "status": "draft", "text": ""}, "request_id": "req_5WsnrviVBixeKSvBRFUNhx", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477521} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T15:01:20.794000+00:00", "attachments": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T15:01:20.794000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T15:01:20.794000+00:00", "direction": "outbound", "error_message": null, "id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+14156236785", "remote_phone_formatted": "+1 415-623-6785", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T15:01:20.796000", "date_updated": "2022-11-08T15:01:20.796000", "id": "ev_0KLEduJAMuvaPvN2wrJxWW", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_LJip5gktnzD3bWZlPsUVfvGQAu4Aij5AZVIWLoi0gau", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_529JeDbVhTjwVSWY7sHJ0q", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477523} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "phones"], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Decision Maker", "Point of Contact"], "date_created": "2021-07-13T11:39:04.977000+00:00", "date_updated": "2022-11-08T15:01:17.915000+00:00", "emails": [{"email": "thedarkknight@close.com", "type": "office"}], "id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "name": "Bruce Wayne", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [{"phone": "+14156236785", "phone_formatted": "+1 415-623-6785", "type": "office"}], "title": "The Dark Knight", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T15:01:17.917000", "date_updated": "2022-11-08T15:01:17.917000", "id": "ev_4gsM7oqZ4bg47VS78E9Q1L", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/contact/cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6/"}, "object_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2021-07-13T11:39:04.977000+00:00", "phones": []}, "request_id": "req_0TLhH1od1yjEyr7A3MtSZq", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477525} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T15:00:34.029000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:34.029000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (5+ times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:00:34.031000", "date_updated": "2022-11-08T15:00:34.031000", "id": "ev_4CwkEwQDIit6ZvRjWxlpVv", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T15:00:24.078000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}]}, "request_id": "req_1YAwKAWaIrSfRgG8L420rU", "user_id": null}, "emitted_at": 1670413477527} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T15:00:24.078000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T15:00:24.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (5+ times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T15:00:24.079000", "date_updated": "2022-11-08T15:00:24.079000", "id": "ev_1UG4Fvdu7LRJg68NBYrHHT", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T14:59:28.676000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (5 times, latest 2022-11-08)"}, "request_id": "req_1nvJHiEyGkPSQNX9CtXjmm", "user_id": null}, "emitted_at": 1670413477529} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T14:59:28.676000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:28.676000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (5 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T14:59:28.678000", "date_updated": "2022-11-08T14:59:28.678000", "id": "ev_10boG4heOXwC0CbtkLhqe8", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T14:59:10.078000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (4 times, latest 2022-11-08)"}, "request_id": "req_2LZ6zxgfXnOZWjCcgGXwgC", "user_id": null}, "emitted_at": 1670413477531} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T14:59:10.078000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:10.078000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (4 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T14:59:10.079000", "date_updated": "2022-11-08T14:59:10.079000", "id": "ev_3QzQHJcJS6PUyOkb8o9ztX", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T14:59:00.139000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (3 times, latest 2022-11-08)"}, "request_id": "req_1k0cssmaYjMNGdI3HZq3rL", "user_id": null}, "emitted_at": 1670413477533} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T14:59:00.139000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:59:00.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (3 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T14:59:00.141000", "date_updated": "2022-11-08T14:59:00.141000", "id": "ev_03k1apuypTuSAwdGVfiGUQ", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T14:48:01.421000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (2 times, latest 2022-11-08)"}, "request_id": "req_2jxrR41E041b7WITFgyTnC", "user_id": null}, "emitted_at": 1670413477535} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T14:48:01.421000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}, {"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:48:01.421000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (2 times, latest 2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T14:48:01.423000", "date_updated": "2022-11-08T14:48:01.423000", "id": "ev_3AErSa8QMe4549Fo9Vkt1o", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T14:25:56.139000+00:00", "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (2022-11-08)"}, "request_id": "req_2Jdhg9WvPxzh1NyQtOUJoi", "user_id": null}, "emitted_at": 1670413477537} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["hangup_recording_url"], "data": {"country": "US", "default_caller_id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "hangup_recording_url": "https://closeio-hangup-recordings.s3.amazonaws.com/7CIYcVuunXA1lxoF4jYEzE/voicemail.mp3", "id": "memb_HETbVNHM1DQq9NgkJkeG6pFNNaLWMRDloahsFzPUVyH", "is_free": false, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "permissions_granted": ["bulk_delete", "bulk_edit", "bulk_email", "bulk_import", "bulk_sequence_subscriptions", "call_coach_barge", "call_coach_listen", "calling", "delete_leads", "delete_own_activities", "delete_own_opportunities", "delete_own_tasks", "export", "manage_customizations", "manage_email_sequences", "manage_group_numbers", "manage_organization", "manage_others_activities", "manage_others_opportunities", "manage_others_tasks", "manage_team_email_templates", "manage_team_smart_views", "merge_leads"], "primary_personal_number": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "record_calls": false, "role": "admin", "role_id": "admin", "track_email_opens": true, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T14:33:02.112000", "date_updated": "2022-11-08T14:33:02.112000", "id": "ev_6acJbJCMxB5oNx3x9YZphV", "lead_id": null, "meta": {"request_method": "PUT", "request_path": "/api/v1/membership/memb_HETbVNHM1DQq9NgkJkeG6pFNNaLWMRDloahsFzPUVyH/"}, "object_id": "memb_HETbVNHM1DQq9NgkJkeG6pFNNaLWMRDloahsFzPUVyH", "object_type": "membership", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"hangup_recording_url": null}, "request_id": "req_4qXgZixdQIjuLApZAzT6px", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477539} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "voicemail_greeting_url"], "data": {"address_id": null, "bundle_id": null, "carrier": "twilio", "country": "US", "date_created": "2022-11-08T12:35:29.464000+00:00", "date_updated": "2022-11-08T14:32:41.736000+00:00", "forward_to": null, "forward_to_enabled": false, "forward_to_formatted": null, "id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "is_group_number": false, "is_verified": false, "label": null, "last_billed_price": "1.15", "mms_enabled": true, "next_billing_on": "2022-12-07", "number": "+14156251293", "number_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "press_1_to_accept": true, "sms_enabled": true, "supports_mms_to_countries": ["CA", "US"], "supports_sms_to_countries": ["CA", "PR", "US"], "type": "internal", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "voicemail_greeting_url": "https://closeio-voicemail-greetings.s3.amazonaws.com/14bzVblrIaekmXSGQEKM11/undefined.mp3"}, "date_created": "2022-11-08T14:32:41.739000", "date_updated": "2022-11-08T14:32:41.739000", "id": "ev_7Dn05g5dJxaxuAfZHrwcir", "lead_id": null, "meta": {"request_method": "PUT", "request_path": "/api/v1/phone_number/phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN/"}, "object_id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "object_type": "phone_number", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:35:33.618000+00:00", "voicemail_greeting_url": null}, "request_id": "req_6DL9OuMRpAMmQqNLlfjyhB", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477541} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"accepts_multiple_values": false, "back_reference_is_visible": null, "choices": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "date_created": "2022-11-08T14:27:04.532000+00:00", "date_updated": "2022-11-08T14:27:04.532000+00:00", "description": "Test activity", "editable_with_roles": [], "id": "cf_aea8B3HHCHNaoNIqzpH6HLvYqvlxCbZNZU8OkhkAuuW", "is_shared": false, "name": "Test Actvity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "referenced_custom_type_id": "", "required": false, "type": "datetime", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T14:27:04.534000", "date_updated": "2022-11-08T14:27:04.534000", "id": "ev_1jGS1P6zfWSXwd2lDyv2Ek", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/custom_field/activity/"}, "object_id": "cf_aea8B3HHCHNaoNIqzpH6HLvYqvlxCbZNZU8OkhkAuuW", "object_type": "custom_fields.activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_3derTyObZvV4OsJk3uAN3T", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477543} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T14:25:56.139000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "185.143.147.236", "opened_at": "2022-11-08T14:25:56.139000+00:00", "opened_by": "thedarkknight@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42"}], "opens_summary": "Opened by thedarkknight@close.com (2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T14:25:56.141000", "date_updated": "2022-11-08T14:25:56.141000", "id": "ev_1uP4qB8gyUOfPe3nzbbzWp", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "GET", "request_path": "/t/ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/LKMjsg1Cwf.png"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:56:53.891000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_3SqL4MVrjMq1GiKvvlk5ad", "user_id": null}, "emitted_at": 1670413477545} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "cleared_followups": [], "contact_id": null, "created_by": null, "created_by_name": null, "date": "2022-11-08T12:58:48+00:00", "date_created": "2022-11-08T12:58:48+00:00", "date_updated": "2022-11-08T13:00:58.979000+00:00", "emails": ["acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr"], "id": "noti_9IHsSYqeUsxtZHI3umO2tpFpCCs5lou3KuMsVxmSKMV", "is_complete": false, "is_new": true, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "lead_name": "Bluth Company (Example\u00a0Lead)", "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Delivery Status Notification (Failure)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-08T13:00:58.986000", "date_updated": "2022-11-08T13:00:58.986000", "id": "ev_2Y2sCQq2z6AApIveosgq9g", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "noti_9IHsSYqeUsxtZHI3umO2tpFpCCs5lou3KuMsVxmSKMV", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413477547} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "latest_normalized_subject", "n_emails", "participants"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T12:58:48.001000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:58:48.001000+00:00", "date_updated": "2022-11-08T13:00:58.808000+00:00", "email_ids": ["acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x"], "id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "latest_normalized_subject": "Delivery Status Notification (Failure)", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 2, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T13:00:58.811000", "date_updated": "2022-11-08T13:00:58.811000", "id": "ev_1RBZrtjsDHmy5rNVfRjBYO", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T12:58:44.680000+00:00", "date_created": "2022-11-08T12:58:44.680000+00:00", "date_updated": "2022-11-08T12:58:47.596000+00:00", "latest_normalized_subject": "Airbyte Follow-up", "n_emails": 1, "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "request_id": null, "user_id": null}, "emitted_at": 1670413477549} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T12:58:48+00:00", "attachments": [{"content_id": "", "content_type": "image/png", "filename": "icon.png", "size": 1450}], "bcc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: Jean Lafleur <iryna.grankova@airbyte.io>
\nSubject: Airbyte Follow-up
\nDate: Tue, 08 Nov 2022 12:58:44 +0000
\nTo: bluth@close.com
\n
\nHi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
\"\"

", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer", "body_text": "\n** Address not found **\n\nYour message wasn't delivered to bluth@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer/6596\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\nFrom: Jean Lafleur \nSubject: Airbyte Follow-up\nDate: Tue, 08 Nov 2022 12:58:44 +0000\nTo: bluth@close.com\n\nHi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": null, "cc": [], "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T12:58:48+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T13:00:58.801000+00:00", "direction": "incoming", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 04:58:48 -0800 (PST)", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "in_reply_to": "<166791232468.5302.9789676641910298968@smtpgw.close.com>", "is_autoreply": true, "message_id": "<636a5288.170a0220.f87e2.10cf.GMR@mx.google.com>", "reply_to": [], "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "subject": "Delivery Status Notification (Failure)", "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<636a5288.170a0220.f87e2.10cf.GMR@mx.google.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": ["<166791232468.5302.12366928756676498962@smtpgw.close.com>", "<166791232468.5302.9789676641910298968@smtpgw.close.com>"], "send_as_id": null, "send_attempts": [], "sender": "Mail Delivery Subsystem ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Delivery Status Notification (Failure)", "template_id": null, "template_name": null, "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["iryna.grankova@airbyte.io"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T13:00:58.803000", "date_updated": "2022-11-08T13:00:58.803000", "id": "ev_7G4f4nb5yfwcEPGiMQrcK6", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {}, "object_id": "acti_5qMpsIcBXwPqYpI8jAFBBWAKcWCzWkG7J5aUHUlUUpr", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413477551} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "incoming_email", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mai", "cleared_followups": [], "contact_id": null, "created_by": null, "created_by_name": null, "date": "2022-11-08T12:56:55+00:00", "date_created": "2022-11-08T12:56:55+00:00", "date_updated": "2022-11-08T13:00:57.869000+00:00", "emails": ["acti_Yc8SKxsCvKYEdmrOElcfbI4TeWAutmDsSG7mmHigzE8"], "id": "noti_U722qGVxvXSd1AP7Cs2ygzun3Vm0tmfKOv1dSt2Itw0", "is_complete": false, "is_new": true, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "object_type": "emailthread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "subject": "Delivery Status Notification (Failure)", "updated_by": null, "updated_by_name": null, "view": null}, "date_created": "2022-11-08T13:00:57.874000", "date_updated": "2022-11-08T13:00:57.874000", "id": "ev_70B5yRmhN2qe6zEnG2SUXr", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "noti_U722qGVxvXSd1AP7Cs2ygzun3Vm0tmfKOv1dSt2Itw0", "object_type": "task.incoming_email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413477553} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated", "latest_normalized_subject", "n_emails", "participants"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T12:56:55.001000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:56:55.001000+00:00", "date_updated": "2022-11-08T13:00:57.707000+00:00", "email_ids": ["acti_Yc8SKxsCvKYEdmrOElcfbI4TeWAutmDsSG7mmHigzE8", "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe"], "id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "latest_normalized_subject": "Delivery Status Notification (Failure)", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 2, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}, {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T13:00:57.710000", "date_updated": "2022-11-08T13:00:57.710000", "id": "ev_3Yo4PWcHJzT8dbLCSyRiZZ", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T12:56:52.539000+00:00", "date_created": "2022-11-08T12:56:52.539000+00:00", "date_updated": "2022-11-08T12:56:53.916000+00:00", "latest_normalized_subject": "Wayne Enterprises (Example Lead) + Airbyte", "n_emails": 1, "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}]}, "request_id": null, "user_id": null}, "emitted_at": 1670413477554} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:55+00:00", "attachments": [{"content_id": "", "content_type": "image/png", "filename": "icon.png", "size": 1450}], "bcc": [], "body_html": "\n\n\n\n\n\n\n\n\n\n
\n\n\n
\n\"Error\n\n\n\n\n

\nAddress not found\n

\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n
\nLEARN MORE\n
\n
\n
\nThe response was:
\n

\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\n

\n
\n\n

\nFrom: Jean Lafleur <iryna.grankova@airbyte.io>
\nSubject: Wayne Enterprises (Example\u00a0Lead) + Airbyte
\nDate: Tue, 08 Nov 2022 12:56:52 +0000
\nTo: thedarkknight@close.com
\n
\nHi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?\"\"

", "body_preview": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mai", "body_text": "\n** Address not found **\n\nYour message wasn't delivered to thedarkknight@close.com because the address couldn't be found, or is unable to receive mail.\n\nLearn more here: https://support.google.com/mail/answer/6596\n\nThe response was:\n\nThe email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/answer/6596\nFrom: Jean Lafleur \nSubject: Wayne Enterprises (Example\u00a0Lead) + Airbyte\nDate: Tue, 08 Nov 2022 12:56:52 +0000\nTo: thedarkknight@close.com\n\nHi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2022-11-08T12:56:55+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T13:00:57.698000+00:00", "direction": "incoming", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 04:56:55 -0800 (PST)", "from": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "in_reply_to": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "is_autoreply": true, "message_id": "<636a5217.170a0220.675e1.11c0.GMR@mx.google.com>", "reply_to": [], "sender": [{"email": "mailer-daemon@googlemail.com", "name": "Mail Delivery Subsystem"}], "subject": "Delivery Status Notification (Failure)", "to": [{"email": "iryna.grankova@airbyte.io", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_Yc8SKxsCvKYEdmrOElcfbI4TeWAutmDsSG7mmHigzE8", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<636a5217.170a0220.675e1.11c0.GMR@mx.google.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": ["<166791221256.1235.14063741572606059919@smtpgw.close.com>", "<166791221256.1235.11589873218010129427@smtpgw.close.com>"], "send_as_id": null, "send_attempts": [], "sender": "Mail Delivery Subsystem ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "inbox", "subject": "Delivery Status Notification (Failure)", "template_id": null, "template_name": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["iryna.grankova@airbyte.io"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T13:00:57.700000", "date_updated": "2022-11-08T13:00:57.700000", "id": "ev_6LLEZCMYH8d4sS0fTaUycm", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_Yc8SKxsCvKYEdmrOElcfbI4TeWAutmDsSG7mmHigzE8", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413477556} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "opens", "opens_summary"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:58:44.679000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur ", "body_text": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "cc": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:58:44.579000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:58:44.679000+00:00", "date_updated": "2022-11-08T12:58:47.565000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:58:44 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791232468.5302.9789676641910298968@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "bluth@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<166791232468.5302.9789676641910298968@smtpgw.close.com>", "<166791232468.5302.12366928756676498962@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [{"ip_address": "66.249.92.10", "opened_at": "2022-11-08T12:58:47.565000+00:00", "opened_by": "bluth@close.com", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0"}], "opens_summary": "Opened by bluth@close.com (2022-11-08)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["bluth@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:58:47.567000", "date_updated": "2022-11-08T12:58:47.567000", "id": "ev_4xALAmBfx7MgOqR9Hi4aVw", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"request_method": "GET", "request_path": "/t/uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x/M0vtraSSWF.png"}, "object_id": "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:58:46.363000+00:00", "opens": [], "opens_summary": null}, "request_id": "req_4jTaS1Oahxdp5a5kIczhWM", "user_id": null}, "emitted_at": 1670413477558} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"contact_preference": "lead", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:58:33.566000+00:00", "date_updated": "2022-11-08T12:58:47.020000+00:00", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "n_leads": 1, "n_leads_processed": 1, "n_objects": 1, "n_objects_processed": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "has:active_opportunities last_communication_date > \"7 days ago\"", "results_limit": null, "s_query": {"negate": false, "type": "match_all"}, "send_done_email": true, "sender": "Jean Lafleur ", "sort": [], "status": "done", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:58:47.030000", "date_updated": "2022-11-08T12:58:47.030000", "id": "ev_4judlv4UH9RjOadjdc2fr4", "lead_id": null, "meta": {"bulk_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB"}, "object_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "object_type": "bulk_action.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_69alL99OIy5Byf57uk9f1Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477560} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads_processed", "n_objects_processed", "status"], "data": {"contact_preference": "lead", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:58:33.566000+00:00", "date_updated": "2022-11-08T12:58:47.020000+00:00", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "n_leads": 1, "n_leads_processed": 1, "n_objects": 1, "n_objects_processed": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "has:active_opportunities last_communication_date > \"7 days ago\"", "results_limit": null, "s_query": {"negate": false, "type": "match_all"}, "send_done_email": true, "sender": "Jean Lafleur ", "sort": [], "status": "done", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:58:47.030000", "date_updated": "2022-11-08T12:58:47.030000", "id": "ev_3C83dxfuzK99pcrjMK14Y9", "lead_id": null, "meta": {"bulk_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB"}, "object_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "object_type": "bulk_action.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:58:46.548000+00:00", "n_leads_processed": 0, "n_objects_processed": 0, "status": "processing"}, "request_id": "req_69alL99OIy5Byf57uk9f1Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477562} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T12:58:44.680000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:58:44.680000+00:00", "date_updated": "2022-11-08T12:58:46.388000+00:00", "email_ids": ["acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x"], "id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:58:46.389000", "date_updated": "2022-11-08T12:58:46.389000", "id": "ev_7fxWpvBSpgfCyEQlM4Q4jk", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"bulk_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB"}, "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T12:58:44.580000+00:00", "date_created": "2022-11-08T12:58:44.580000+00:00", "date_updated": "2022-11-08T12:58:44.586000+00:00"}, "request_id": "req_69alL99OIy5Byf57uk9f1Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477564} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "body_preview", "body_text", "date_sent", "date_updated", "envelope", "message_ids", "status"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:58:44.679000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur ", "body_text": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "cc": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:58:44.579000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:58:44.679000+00:00", "date_updated": "2022-11-08T12:58:46.363000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:58:44 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791232468.5302.9789676641910298968@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "bluth@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<166791232468.5302.9789676641910298968@smtpgw.close.com>", "<166791232468.5302.12366928756676498962@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["bluth@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:58:46.365000", "date_updated": "2022-11-08T12:58:46.365000", "id": "ev_7ZNQMsUU91esDNeDZ5vSXH", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"bulk_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB"}, "object_id": "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T12:58:44.579000+00:00", "body_preview": "Hi Gob, Friendly follow-up. I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? - Wed @ 11AM - Thur @ 2PM - Fri @ 3P", "body_text": null, "date_sent": null, "date_updated": "2022-11-08T12:58:44.592000+00:00", "envelope": null, "message_ids": [], "status": "draft"}, "request_id": "req_69alL99OIy5Byf57uk9f1Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413477566} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T12:58:44.679000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur ", "body_text": "Hi Gob, \n \nFriendly follow-up. \n \nI wanted to show you how Airbyte can help you with [INSERT YOUR\nPRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? \n \n\\- Wed @ 11AM \n\\- Thur @ 2PM \n\\- Fri @ 3PM", "bulk_email_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "cc": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:58:44.579000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:58:44.679000+00:00", "date_updated": "2022-11-08T12:58:46.363000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:58:44 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791232468.5302.9789676641910298968@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Airbyte Follow-up", "to": [{"email": "bluth@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": ["<166791232468.5302.9789676641910298968@smtpgw.close.com>", "<166791232468.5302.12366928756676498962@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["bluth@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:58:46.365000", "date_updated": "2022-11-08T12:58:46.365000", "id": "ev_3flLUOo1CMbfmNChFM2uWy", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"bulk_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB"}, "object_id": "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_69alL99OIy5Byf57uk9f1Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478250} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T12:58:44.579000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Gob,

Friendly follow-up.

I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "body_preview": "Hi Gob, Friendly follow-up. I wanted to show you how Airbyte can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week? - Wed @ 11AM - Thur @ 2PM - Fri @ 3P", "body_text": null, "bulk_email_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "cc": [], "contact_id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:58:44.579000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:58:44.592000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": null, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x", "in_reply_to_id": null, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "Airbyte Follow-up", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "template_name": "Email 2 - Follow-up #1", "thread_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "to": ["bluth@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:58:44.594000", "date_updated": "2022-11-08T12:58:44.594000", "id": "ev_4EC9gH3wBkStT61uj7AGHs", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"bulk_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB"}, "object_id": "acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_69alL99OIy5Byf57uk9f1Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478252} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T12:58:44.580000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:58:44.580000+00:00", "date_updated": "2022-11-08T12:58:44.586000+00:00", "email_ids": ["acti_uTYUIkVvkt5gjJjn5D3RtEIveSqwuP6pCVwC6vNA69x"], "id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "latest_normalized_subject": "Airbyte Follow-up", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:58:44.588000", "date_updated": "2022-11-08T12:58:44.588000", "id": "ev_0juNxEsdkzTcqFWmfsUsCV", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "meta": {"bulk_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB"}, "object_id": "acti_4XmjyRgIPIH5OSEa18MH6FFVPf0JnS65X8AX8KucQwJ", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_69alL99OIy5Byf57uk9f1Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478254} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_leads", "n_objects", "status"], "data": {"contact_preference": "lead", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:58:33.566000+00:00", "date_updated": "2022-11-08T12:58:43.481000+00:00", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "n_leads": 1, "n_leads_processed": 0, "n_objects": 1, "n_objects_processed": 0, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "has:active_opportunities last_communication_date > \"7 days ago\"", "results_limit": null, "s_query": {"negate": false, "type": "match_all"}, "send_done_email": true, "sender": "Jean Lafleur ", "sort": [], "status": "processing", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:58:42.667000", "date_updated": "2022-11-08T12:58:43.492000", "id": "ev_37SshV7XUNLmOSTzTZew2X", "lead_id": null, "meta": {"bulk_action_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB"}, "object_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "object_type": "bulk_action.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:58:33.566000+00:00", "n_leads": null, "n_objects": null, "status": "created"}, "request_id": "req_69alL99OIy5Byf57uk9f1Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478255} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"contact_preference": "lead", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:58:33.566000+00:00", "date_updated": "2022-11-08T12:58:33.566000+00:00", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "n_leads": null, "n_leads_processed": 0, "n_objects": null, "n_objects_processed": 0, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "has:active_opportunities last_communication_date > \"7 days ago\"", "results_limit": null, "s_query": {"negate": false, "type": "match_all"}, "send_done_email": true, "sender": "Jean Lafleur ", "sort": [], "status": "created", "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:58:33.568000", "date_updated": "2022-11-08T12:58:33.568000", "id": "ev_2nHQYOznAOdmPsKZdjHobS", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/bulk_action/email/"}, "object_id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "object_type": "bulk_action.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_69alL99OIy5Byf57uk9f1Z", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478257} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "date_updated", "status"], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:57:36.327000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "Test meeting", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "date_created": "2022-11-08T12:57:36.327000+00:00", "date_updated": "2022-11-08T12:57:41.036000+00:00", "id": "acti_ndvZApXIgLqbUsyciHCX3kmvPTwr7jQymarl4uOt43l", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "published", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:57:39.344000", "date_updated": "2022-11-08T12:57:41.038000", "id": "ev_1Jo9jzSb4Dt2Uggoa7qnVM", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/custom/acti_ndvZApXIgLqbUsyciHCX3kmvPTwr7jQymarl4uOt43l/"}, "object_id": "acti_ndvZApXIgLqbUsyciHCX3kmvPTwr7jQymarl4uOt43l", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "T", "date_updated": "2022-11-08T12:57:36.327000+00:00", "status": "draft"}, "request_id": "req_38GnoVKcIh5e1wND1vM55x", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478259} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "status"], "data": {"_type": "SMS", "activity_at": "2022-11-08T12:57:39.721000+00:00", "attachments": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:57:17.961000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:57:39.721000+00:00", "date_updated": "2022-11-08T12:57:39.721000+00:00", "direction": "outbound", "error_message": null, "id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+16505176539", "remote_phone_formatted": "+1 650-517-6539", "source": "Close.io", "status": "sent", "template_id": "", "text": "Test sms", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T12:57:39.729000", "date_updated": "2022-11-08T12:57:39.729000", "id": "ev_3idANNKfwKPqZ5GOmIH7Gd", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T12:57:17.961000+00:00", "date_sent": null, "date_updated": "2022-11-08T12:57:38.849000+00:00", "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478261} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T12:57:39.721000+00:00", "attachments": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:57:17.961000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:57:39.721000+00:00", "date_updated": "2022-11-08T12:57:39.721000+00:00", "direction": "outbound", "error_message": null, "id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+16505176539", "remote_phone_formatted": "+1 650-517-6539", "source": "Close.io", "status": "sent", "template_id": "", "text": "Test sms", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T12:57:39.729000", "date_updated": "2022-11-08T12:57:39.729000", "id": "ev_3GzgrmMI4ktUC8Hly48Lyr", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478263} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["cost", "date_updated"], "data": {"_type": "SMS", "activity_at": "2022-11-08T12:57:17.961000+00:00", "attachments": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "cost": "1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:57:17.961000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:57:38.849000+00:00", "direction": "outbound", "error_message": null, "id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+16505176539", "remote_phone_formatted": "+1 650-517-6539", "source": "Close.io", "status": "outbox", "template_id": "", "text": "Test sms", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T12:57:38.856000", "date_updated": "2022-11-08T12:57:38.856000", "id": "ev_6Z81XgNhZA8e3IPALkwJTB", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"cost": null, "date_updated": "2022-11-08T12:57:26.038000+00:00"}, "request_id": null, "user_id": null}, "emitted_at": 1670413478265} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:57:36.327000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "T", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "date_created": "2022-11-08T12:57:36.327000+00:00", "date_updated": "2022-11-08T12:57:36.327000+00:00", "id": "acti_ndvZApXIgLqbUsyciHCX3kmvPTwr7jQymarl4uOt43l", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "draft", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:57:36.329000", "date_updated": "2022-11-08T12:57:36.329000", "id": "ev_75pXRbuBCn7HusyaITNAwt", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/custom/"}, "object_id": "acti_ndvZApXIgLqbUsyciHCX3kmvPTwr7jQymarl4uOt43l", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0rElvTA8qPHyCiEVvH6vxI", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478267} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status", "text"], "data": {"_type": "SMS", "activity_at": "2022-11-08T12:57:17.961000+00:00", "attachments": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:57:17.961000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:57:26.038000+00:00", "direction": "outbound", "error_message": null, "id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+16505176539", "remote_phone_formatted": "+1 650-517-6539", "source": "Close.io", "status": "outbox", "template_id": "", "text": "Test sms", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T12:57:21.071000", "date_updated": "2022-11-08T12:57:26.040000", "id": "ev_5ySbiYjCEgGSIbxKEhCMZn", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/sms/acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC/"}, "object_id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:57:17.961000+00:00", "status": "draft", "text": ""}, "request_id": "req_3R3Vw2T8Bx0XajvoUZkq65", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478269} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "SMS", "activity_at": "2022-11-08T12:57:17.961000+00:00", "attachments": [], "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "cost": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:57:17.961000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:57:17.961000+00:00", "direction": "outbound", "error_message": null, "id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "local_country_iso": "US", "local_phone": "+14156251293", "local_phone_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "remote_country_iso": "US", "remote_phone": "+16505176539", "remote_phone_formatted": "+1 650-517-6539", "source": "Close.io", "status": "draft", "template_id": "", "text": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur"}, "date_created": "2022-11-08T12:57:17.963000", "date_updated": "2022-11-08T12:57:17.963000", "id": "ev_5G9woDnJH0svN96CIPtE08", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/sms/"}, "object_id": "acti_KidUxSobTFVZwPO3zz7F7IfYeheY6rqEOOSfuuPI2xC", "object_type": "activity.sms", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_5qRtFcVYq6Aqi4gDcFN1uc", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478271} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_created", "date_updated"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T12:56:52.539000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:56:52.539000+00:00", "date_updated": "2022-11-08T12:56:53.916000+00:00", "email_ids": ["acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe"], "id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "latest_normalized_subject": "Wayne Enterprises (Example Lead) + Airbyte", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:56:53.918000", "date_updated": "2022-11-08T12:56:53.918000", "id": "ev_0LORDQEVzrS8pvHOJbovE6", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T12:54:51.104000+00:00", "date_created": "2022-11-08T12:54:51.104000+00:00", "date_updated": "2022-11-08T12:56:39.644000+00:00"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478273} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["activity_at", "date_sent", "date_updated", "envelope", "message_ids", "status"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T12:56:53.891000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:56:53.893000", "date_updated": "2022-11-08T12:56:53.893000", "id": "ev_2uk8G8LihWSmA5ye5nw0bu", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"activity_at": "2022-11-08T12:54:51.103000+00:00", "date_sent": null, "date_updated": "2022-11-08T12:56:39.623000+00:00", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:54:51 -0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "message_ids": [], "status": "outbox"}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478274} +{"stream": "events", "data": {"action": "sent", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T12:56:52.538000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": "2022-11-08T12:56:52.538000+00:00", "date_updated": "2022-11-08T12:56:53.891000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:56:52 +0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<166791221256.1235.11589873218010129427@smtpgw.close.com>", "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": ["<166791221256.1235.11589873218010129427@smtpgw.close.com>", "<166791221256.1235.14063741572606059919@smtpgw.close.com>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:56:53.893000", "date_updated": "2022-11-08T12:56:53.893000", "id": "ev_19pY6D5ddgRpKMaLJZBurd", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478276} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["body_html", "date_updated", "status"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:54:51.103000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:56:39.623000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:54:51 -0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "outbox", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:56:39.624000", "date_updated": "2022-11-08T12:56:39.624000", "id": "ev_6g6SjjAq0BFqYDQKMXDbXF", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "date_updated": "2022-11-08T12:56:28.840000+00:00", "status": "draft"}, "request_id": "req_5JFKYAzGuO9OAx2jRO5I6Y", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478279} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "latest_normalized_subject", "participants"], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T12:54:51.104000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.104000+00:00", "date_updated": "2022-11-08T12:56:28.852000+00:00", "email_ids": ["acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe"], "id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "latest_normalized_subject": "Wayne Enterprises (Example Lead) + Airbyte", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:56:25.569000", "date_updated": "2022-11-08T12:56:28.853000", "id": "ev_4i43OZDSnOrtxVuSvBytin", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/"}, "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:54:56.503000+00:00", "latest_normalized_subject": "Test", "participants": []}, "request_id": "req_6r2Gn3nkUuLmQNlrGdgNiy", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478281} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["body_html", "body_preview", "body_text", "date_updated", "email_account_id", "envelope", "sender", "subject", "template_id", "template_name"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:54:51.103000+00:00", "attachments": [], "bcc": [], "body_html": "Hi Bruce,

I'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at Wayne Enterprises (Example\u00a0Lead) and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "body_preview": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) an", "body_text": "Hi Bruce, \n \nI'm Jean with Airbyte. We help companies in the Manufacturing space [INSERT\nYOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at\nWayne Enterprises (Example Lead) and show you what we're working on. \n \nAre you available for a quick call tomorrow afternoon?", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:56:28.840000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:54:51 -0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "Wayne Enterprises (Example\u00a0Lead) + Airbyte", "template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "template_name": "Email 1 - Intro", "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:56:25.546000", "date_updated": "2022-11-08T12:56:28.842000", "id": "ev_0ofIb1fBDuBp7AbfCQ3cn8", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"body_html": "test", "body_preview": "test", "body_text": "test", "date_updated": "2022-11-08T12:54:56.492000+00:00", "email_account_id": null, "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:54:51 -0000", "from": [], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [], "subject": "Test", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "sender": null, "subject": "Test", "template_id": null, "template_name": null}, "request_id": "req_6r2Gn3nkUuLmQNlrGdgNiy", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478282} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["body_html", "body_preview", "body_text", "date_updated", "envelope"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:55:49.388000+00:00", "attachments": [], "bcc": [], "body_html": "Test", "body_preview": "Test", "body_text": "Test", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:55:49.388000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:55:54.125000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:55:49 -0000", "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_XF6sSdUpFbve6PLReW4YrwwxTunoon1q7EAjkhiolZA", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "Test", "template_id": null, "template_name": null, "thread_id": "acti_diSbB5sLhZK1kkgpBgzl4dlojtN1Nt6MEvLPC5DEZpe", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:55:52.669000", "date_updated": "2022-11-08T12:55:54.127000", "id": "ev_4G7O0HFExUkOHYpSyJKITO", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_XF6sSdUpFbve6PLReW4YrwwxTunoon1q7EAjkhiolZA/"}, "object_id": "acti_XF6sSdUpFbve6PLReW4YrwwxTunoon1q7EAjkhiolZA", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"body_html": "", "body_preview": null, "body_text": "", "date_updated": "2022-11-08T12:55:49.397000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test", "to": [{"email": "thedarkknight@close.com", "name": ""}]}}, "request_id": "req_7MP7G9O8mus0hHAGJ9IrCG", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478284} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T12:55:49.388000+00:00", "attachments": [], "bcc": [], "body_html": "", "body_preview": null, "body_text": "", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:55:49.388000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:55:49.397000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": null, "from": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "subject": "Test", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_XF6sSdUpFbve6PLReW4YrwwxTunoon1q7EAjkhiolZA", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "Jean Lafleur ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "Test", "template_id": null, "template_name": null, "thread_id": "acti_diSbB5sLhZK1kkgpBgzl4dlojtN1Nt6MEvLPC5DEZpe", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:55:49.399000", "date_updated": "2022-11-08T12:55:49.399000", "id": "ev_2oE1GjMC8yz65iLyI6bsxM", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_XF6sSdUpFbve6PLReW4YrwwxTunoon1q7EAjkhiolZA", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2njnA6dxxrBlr0QZZf11YL", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478286} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T12:55:49.389000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:55:49.389000+00:00", "date_updated": "2022-11-08T12:55:49.393000+00:00", "email_ids": ["acti_XF6sSdUpFbve6PLReW4YrwwxTunoon1q7EAjkhiolZA"], "id": "acti_diSbB5sLhZK1kkgpBgzl4dlojtN1Nt6MEvLPC5DEZpe", "latest_normalized_subject": "Test", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:55:49.395000", "date_updated": "2022-11-08T12:55:49.395000", "id": "ev_6Ic1jfulUodOYYRBg2eqWr", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_diSbB5sLhZK1kkgpBgzl4dlojtN1Nt6MEvLPC5DEZpe", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2njnA6dxxrBlr0QZZf11YL", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478288} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["body_html", "body_preview", "body_text", "date_updated", "envelope"], "data": {"_type": "Email", "activity_at": "2022-11-08T12:54:51.103000+00:00", "attachments": [], "bcc": [], "body_html": "test", "body_preview": "test", "body_text": "test", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:54:56.492000+00:00", "direction": "outgoing", "email_account_id": null, "envelope": {"bcc": [], "cc": [], "date": "Tue, 08 Nov 2022 12:54:51 -0000", "from": [], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [], "subject": "Test", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": null, "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "Test", "template_id": null, "template_name": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:54:56.494000", "date_updated": "2022-11-08T12:54:56.494000", "id": "ev_6bDYnuHT90jg1kg6b0R7z0", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/email/acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe/"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"body_html": "", "body_preview": null, "body_text": "", "date_updated": "2022-11-08T12:54:51.116000+00:00", "envelope": {"bcc": [], "cc": [], "date": null, "from": [], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [], "subject": "Test", "to": [{"email": "thedarkknight@close.com", "name": ""}]}}, "request_id": "req_7R7JY1nJXQjYxlE3pv0hDE", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478290} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2022-11-08T12:54:51.103000+00:00", "attachments": [], "bcc": [], "body_html": "", "body_preview": null, "body_text": "", "bulk_email_action_id": null, "cc": [], "contact_id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.103000+00:00", "date_scheduled": null, "date_sent": null, "date_updated": "2022-11-08T12:54:51.116000+00:00", "direction": "outgoing", "email_account_id": null, "envelope": {"bcc": [], "cc": [], "date": null, "from": [], "in_reply_to": null, "is_autoreply": false, "message_id": null, "reply_to": [], "sender": [], "subject": "Test", "to": [{"email": "thedarkknight@close.com", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "in_reply_to_id": null, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "message_ids": [], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": null, "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "draft", "subject": "Test", "template_id": null, "template_name": null, "thread_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "to": ["thedarkknight@close.com"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:54:51.118000", "date_updated": "2022-11-08T12:54:51.118000", "id": "ev_3EPymJ3HjasusuLyJfzm42", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6cqclJ7coAWXFOYzJDPyaf", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478292} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2022-11-08T12:54:51.104000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:54:51.104000+00:00", "date_updated": "2022-11-08T12:54:51.111000+00:00", "email_ids": ["acti_ZU8MvgvFu21A7QMkYFD5SAI8EqrITmfJuu4f5FJDnCe"], "id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "latest_normalized_subject": "Test", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:54:51.113000", "date_updated": "2022-11-08T12:54:51.113000", "id": "ev_1tnTsAiOrK75gb7vf64WxP", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/email/"}, "object_id": "acti_wK6I4m4SqRMvvm0VHR8DhdUL35HRfjIlBkrMVCKWNaU", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_6cqclJ7coAWXFOYzJDPyaf", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478294} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "date_updated", "status"], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:40:32.535000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "Meeting 1", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "date_created": "2022-11-08T12:40:32.535000+00:00", "date_updated": "2022-11-08T12:40:38.917000+00:00", "id": "acti_FTn9toCS3uqaRzfmlo7RaVjAHuuWWlio1ShJlwguBxh", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "published", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:40:35.396000", "date_updated": "2022-11-08T12:40:38.919000", "id": "ev_4l9KF2jvor1Vpw7HbjPeUr", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/custom/acti_FTn9toCS3uqaRzfmlo7RaVjAHuuWWlio1ShJlwguBxh/"}, "object_id": "acti_FTn9toCS3uqaRzfmlo7RaVjAHuuWWlio1ShJlwguBxh", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "M", "date_updated": "2022-11-08T12:40:32.535000+00:00", "status": "draft"}, "request_id": "req_6zXr6RYINKmkRZ1nKN66Ak", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478296} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:40:32.535000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "M", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "date_created": "2022-11-08T12:40:32.535000+00:00", "date_updated": "2022-11-08T12:40:32.535000+00:00", "id": "acti_FTn9toCS3uqaRzfmlo7RaVjAHuuWWlio1ShJlwguBxh", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "draft", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:40:32.538000", "date_updated": "2022-11-08T12:40:32.538000", "id": "ev_4Z4tK2JqKv64R71GblPEb9", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/custom/"}, "object_id": "acti_FTn9toCS3uqaRzfmlo7RaVjAHuuWWlio1ShJlwguBxh", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_30UgRVVFROdIDMB6mCbEtM", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478298} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4", "custom.cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm", "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D", "date_updated", "status"], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:40:09.329000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Facebook", "custom.cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm": "Yes", "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "Stark Industries", "custom.cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Media", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Point of Contact"], "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "date_created": "2022-11-08T12:40:09.329000+00:00", "date_updated": "2022-11-08T12:40:25.872000+00:00", "id": "acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "published", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:40:21.951000", "date_updated": "2022-11-08T12:40:25.874000", "id": "ev_1t7IfQaKaIgsa8Bmk5Fq7H", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/custom/acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0/"}, "object_id": "acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": null, "custom.cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm": null, "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": null, "date_updated": "2022-11-08T12:40:18.612000+00:00", "status": "draft"}, "request_id": "req_1CrOg7446y9lJP9Jo2kOtq", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478300} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi", "date_updated"], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:40:09.329000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Media", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Point of Contact"], "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "date_created": "2022-11-08T12:40:09.329000+00:00", "date_updated": "2022-11-08T12:40:18.612000+00:00", "id": "acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "draft", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:40:15.338000", "date_updated": "2022-11-08T12:40:18.613000", "id": "ev_12UsNZ1ycUB5kkeGVXZIq5", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/custom/acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0/"}, "object_id": "acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": null, "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": null, "date_updated": "2022-11-08T12:40:09.329000+00:00"}, "request_id": "req_2YNxxoArlVB52PtTXqKrv3", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478302} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:40:09.329000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "date_created": "2022-11-08T12:40:09.329000+00:00", "date_updated": "2022-11-08T12:40:09.329000+00:00", "id": "acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "draft", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:40:09.331000", "date_updated": "2022-11-08T12:40:09.331000", "id": "ev_0Y3Ynbm8HjexOx8AwYd5ub", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/custom/"}, "object_id": "acti_56OhzlisdLZ3EBRnVtqA2Ez4lB9rI7IZNT3fR2jaJg0", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0WtkS7j32Aa5DK814Ie32W", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478304} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "opportunity_due", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-08", "date_created": "2022-11-08T12:39:45.247000+00:00", "date_updated": "2022-11-08T12:39:45.247000+00:00", "id": "noti_TmKkh9qNFLGadhDQaMvSBhvt7NpKG5LaQeA8QMoy7mD", "is_complete": true, "is_new": false, "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": "oppo_Q5P0tdfD07i2ik9Xj3BtLO0z7R8DYe9sdCOoQgCXCju", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-08T12:39:45.249000", "date_updated": "2022-11-08T12:39:45.249000", "id": "ev_1uKf3DVSX7iYgTfbfRtg5Z", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/opportunity/"}, "object_id": "noti_TmKkh9qNFLGadhDQaMvSBhvt7NpKG5LaQeA8QMoy7mD", "object_type": "task.opportunity_due", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2tvnBBeG0usfUKh0sKRnHa", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478305} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"annualized_expected_value": 600000, "annualized_value": 600000, "confidence": 100, "contact_id": null, "contact_name": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:39:45.225000+00:00", "date_lost": null, "date_updated": "2022-11-08T12:39:45.225000+00:00", "date_won": "2022-11-08", "expected_value": 50000, "id": "oppo_Q5P0tdfD07i2ik9Xj3BtLO0z7R8DYe9sdCOoQgCXCju", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_gaqEGSVHIFzrofTfzzg5UfjyBZ1B6KERccIy2MOp8FG", "status_label": "Won", "status_type": "won", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "value": 50000, "value_currency": "USD", "value_formatted": "$500 monthly", "value_period": "monthly"}, "date_created": "2022-11-08T12:39:45.227000", "date_updated": "2022-11-08T12:39:45.227000", "id": "ev_5mYcsYjtXoi0CoYjjuVneL", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/opportunity/"}, "object_id": "oppo_Q5P0tdfD07i2ik9Xj3BtLO0z7R8DYe9sdCOoQgCXCju", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2tvnBBeG0usfUKh0sKRnHa", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478307} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-08", "date_created": "2022-11-08T12:39:28.163000+00:00", "date_updated": "2022-11-08T12:39:28.163000+00:00", "due_date": "2022-11-08", "id": "task_TkXjx6VgrvQDAvjgw5zF3tbMfVOKSUgfv4T9wDDvzor", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "date_created": "2022-11-08T12:39:28.164000", "date_updated": "2022-11-08T12:39:28.164000", "id": "ev_7T18bm9r9shLy6w7V7U4P5", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_TkXjx6VgrvQDAvjgw5zF3tbMfVOKSUgfv4T9wDDvzor", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0cEEOoW9fa6xz6s8r0YYDd", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478309} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status_id", "status_label"], "data": {"addresses": [], "contact_ids": ["cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:39:18.101000+00:00", "date_updated": "2022-11-08T12:39:23.493000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_y6v7svdpj3v1ZHd1GoiJFcKrUGrA0jl2Af53jfGbkN9", "status_label": "Qualified", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-08T12:39:23.495000", "date_updated": "2022-11-08T12:39:23.495000", "id": "ev_7dgBXgu2unGNxxG4ogshJZ", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q/"}, "object_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:39:18.129000+00:00", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential"}, "request_id": "req_45OMxPljzUgXRgQsSvUrDM", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478311} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "LeadStatusChange", "activity_at": "2022-11-08T12:39:23.457000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:39:23.457000+00:00", "date_updated": "2022-11-08T12:39:23.457000+00:00", "id": "acti_djNEynab5lvt0dA3DR2zp57cty6YQ958yzPyTH14rp3", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "new_status_id": "stat_y6v7svdpj3v1ZHd1GoiJFcKrUGrA0jl2Af53jfGbkN9", "new_status_label": "Qualified", "old_status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "old_status_label": "Potential", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:39:23.459000", "date_updated": "2022-11-08T12:39:23.459000", "id": "ev_1h9U3cr13euw9wPOfwU2Jk", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q/"}, "object_id": "acti_djNEynab5lvt0dA3DR2zp57cty6YQ958yzPyTH14rp3", "object_type": "activity.lead_status_change", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_45OMxPljzUgXRgQsSvUrDM", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478313} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Created", "activity_at": "2022-11-08T12:39:18.101000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:39:18.101000+00:00", "date_updated": "2022-11-08T12:39:18.119000+00:00", "id": "acti_9XUHcfmeKdaDhVS82diWdqGnKPvEfM3SkEr2t0uVVtb", "import_id": null, "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "ui", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:39:18.122000", "date_updated": "2022-11-08T12:39:18.122000", "id": "ev_4WeFva4YNBsneCWoeGO4Yg", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "acti_9XUHcfmeKdaDhVS82diWdqGnKPvEfM3SkEr2t0uVVtb", "object_type": "activity.created", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1MycTaWunddiPYvHNHeGbt", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478315} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"addresses": [], "contact_ids": ["cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:39:18.101000+00:00", "date_updated": "2022-11-08T12:39:18.109000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-08T12:39:18.110000", "date_updated": "2022-11-08T12:39:18.110000", "id": "ev_6BmXHaXvhvs0kpCYdJelmy", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1MycTaWunddiPYvHNHeGbt", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478317} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:39:18.105000+00:00", "date_updated": "2022-11-08T12:39:18.105000+00:00", "emails": [], "id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "name": "Test Lead 3", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T12:39:18.106000", "date_updated": "2022-11-08T12:39:18.106000", "id": "ev_3iV2ehtWnqDAxpMiJkMvHO", "lead_id": "lead_k4vzXFytFf3MNtDFBQ7dmracwique8ihE5vB0yqNc0Q", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "cont_yPMHEQ9BNIa5ZcOs6SXzte1qUQsBGkQyMe5Ytmf72ih", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1MycTaWunddiPYvHNHeGbt", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478319} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "opportunity_due", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": "cont_qs64s6KtlTtHuDUfftdGRYnHE6tdU8GIGdPr1zurKz1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-17", "date_created": "2022-11-08T12:38:51.597000+00:00", "date_updated": "2022-11-08T12:38:51.597000+00:00", "id": "noti_5CwYYAqPoVjCYRZagjxdbeyEOusRDISkehgr3v1KVfV", "is_complete": false, "is_new": true, "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": "oppo_jKsuUM39hyb0lRGfX42LdnNA7gAPeg6WPGDyshYQdtd", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-08T12:38:51.598000", "date_updated": "2022-11-08T12:38:51.598000", "id": "ev_6QGlhTC49Hm3ATgv1GaBCZ", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"request_method": "POST", "request_path": "/api/v1/opportunity/"}, "object_id": "noti_5CwYYAqPoVjCYRZagjxdbeyEOusRDISkehgr3v1KVfV", "object_type": "task.opportunity_due", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_21UD5YvJOWMLGR88SSAmoH", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478320} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"annualized_expected_value": 10000, "annualized_value": 20000, "confidence": 50, "contact_id": "cont_qs64s6KtlTtHuDUfftdGRYnHE6tdU8GIGdPr1zurKz1", "contact_name": "Test Lead 2", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:38:51.568000+00:00", "date_lost": null, "date_updated": "2022-11-08T12:38:51.568000+00:00", "date_won": "2022-11-17", "expected_value": 10000, "id": "oppo_jKsuUM39hyb0lRGfX42LdnNA7gAPeg6WPGDyshYQdtd", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_ObYTUqjVZW0nTZXjvHhzMGyK999e42WZdIhkaNq12En", "status_label": "Contract Sent", "status_type": "active", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "value": 20000, "value_currency": "USD", "value_formatted": "$200", "value_period": "one_time"}, "date_created": "2022-11-08T12:38:51.570000", "date_updated": "2022-11-08T12:38:51.570000", "id": "ev_1wOVvMtz3NCC0QvBoQdrNl", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"request_method": "POST", "request_path": "/api/v1/opportunity/"}, "object_id": "oppo_jKsuUM39hyb0lRGfX42LdnNA7gAPeg6WPGDyshYQdtd", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_21UD5YvJOWMLGR88SSAmoH", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478322} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-08", "date_created": "2022-11-08T12:38:32.187000+00:00", "date_updated": "2022-11-08T12:38:32.187000+00:00", "due_date": "2022-11-08", "id": "task_xKiuX4ZjnL2zRUlNWFjPbupKofLLhYkLPsDdEnsLBMb", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "date_created": "2022-11-08T12:38:32.189000", "date_updated": "2022-11-08T12:38:32.189000", "id": "ev_4VzXL1MgpwkfNub6NKdKFo", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_xKiuX4ZjnL2zRUlNWFjPbupKofLLhYkLPsDdEnsLBMb", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1SlKVluzthCS62IFQM916h", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478324} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Created", "activity_at": "2022-11-08T12:38:24.066000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:38:24.066000+00:00", "date_updated": "2022-11-08T12:38:24.084000+00:00", "id": "acti_HZwfZd2NtUbwSXTUsxMhMLGDltDnYSoVhGTa26NgY1I", "import_id": null, "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "ui", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:38:24.086000", "date_updated": "2022-11-08T12:38:24.086000", "id": "ev_4uXRorkllLKr8Xa8zALhOH", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "acti_HZwfZd2NtUbwSXTUsxMhMLGDltDnYSoVhGTa26NgY1I", "object_type": "activity.created", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_73FLliAHOTmRpX8ssRrUci", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478326} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"addresses": [], "contact_ids": ["cont_qs64s6KtlTtHuDUfftdGRYnHE6tdU8GIGdPr1zurKz1"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:38:24.066000+00:00", "date_updated": "2022-11-08T12:38:24.075000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-08T12:38:24.077000", "date_updated": "2022-11-08T12:38:24.077000", "id": "ev_2rD528XH9VddwW31wINcjT", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_73FLliAHOTmRpX8ssRrUci", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478328} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:38:24.071000+00:00", "date_updated": "2022-11-08T12:38:24.071000+00:00", "emails": [], "id": "cont_qs64s6KtlTtHuDUfftdGRYnHE6tdU8GIGdPr1zurKz1", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "name": "Test Lead 2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T12:38:24.073000", "date_updated": "2022-11-08T12:38:24.073000", "id": "ev_1r6XAwPLvd3UE7HjjtSA7X", "lead_id": "lead_wHmSTaI65HmsT7qaYK0f89m0w65a9d0LRCwCws7ujWl", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "cont_qs64s6KtlTtHuDUfftdGRYnHE6tdU8GIGdPr1zurKz1", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_73FLliAHOTmRpX8ssRrUci", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478330} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_emails"], "data": {"_type": "EmailThread", "activity_at": "2021-08-25T21:15:36.001000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2021-08-25T21:15:36.001000+00:00", "date_updated": "2022-11-08T12:36:06.162000+00:00", "email_ids": ["acti_iNuDRoYQ5w17aiH9BRIfN2gHbWBth11m4D16q9mxkdn", "acti_6pzzBcXnRUrC7ClGxkbfyifOL0tKELXmDQsGffzFx8N"], "id": "acti_3rQgtNnE0L7Wo90WzgOXcbfSR2WCjOBipMrAq41yJFE", "latest_normalized_subject": "Your bulk edit for Airbyte is done", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 2, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "'Close CRM' via Integration tests"}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:36:06.165000", "date_updated": "2022-11-08T12:36:06.165000", "id": "ev_25I25vUFlNEdRTz2g4WNs5", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_3rQgtNnE0L7Wo90WzgOXcbfSR2WCjOBipMrAq41yJFE", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:36:05.975000+00:00", "n_emails": 1}, "request_id": null, "user_id": null}, "emitted_at": 1670413478332} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2021-08-25T21:03:54+00:00", "attachments": [], "bcc": [], "body_html": "Hello Jean,
\n
\nYour bulk edit in Close was completed successfully.
\n
\nSearch query: *
\nAction: Set custom field "Lead Owner" to "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg".
\n
\nAll 2 leads were modified successfully.
\n
\nThanks,
\nClose Support
\nsupport@close.com
\n
\n
\n", "body_preview": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Set custom field \"Lead Owner\" to \"user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg\".\n\nAll 2 leads were modifie", "body_text": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Set custom field \"Lead Owner\" to \"user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg\".\n\nAll 2 leads were modified successfully.\n\nThanks,\nClose Support\nsupport@close.com\n\n\n", "bulk_email_action_id": null, "cc": [], "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2021-08-25T21:03:54+00:00", "date_scheduled": null, "date_sent": "2021-08-25T21:03:54+00:00", "date_updated": "2022-11-08T12:36:06.154000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Wed, 25 Aug 2021 21:03:54 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "'Close CRM' via Integration tests"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<162992543485.16564.1574709800437653559@closeio-tasktiger-other-7bd975b8f7-x9jpv>", "reply_to": [{"email": "support@close.com", "name": "Close CRM"}], "sender": [{"email": "support@close.com", "name": ""}], "subject": "Your bulk edit for Airbyte is done", "to": [{"email": "integration-test@airbyte.io", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_6pzzBcXnRUrC7ClGxkbfyifOL0tKELXmDQsGffzFx8N", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<162992543485.16564.1574709800437653559@closeio-tasktiger-other-7bd975b8f7-x9jpv>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "'Close CRM' via Integration tests ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Your bulk edit for Airbyte is done", "template_id": null, "template_name": null, "thread_id": "acti_3rQgtNnE0L7Wo90WzgOXcbfSR2WCjOBipMrAq41yJFE", "to": ["integration-test@airbyte.io"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:36:06.156000", "date_updated": "2022-11-08T12:36:06.156000", "id": "ev_1Tpw8hUDH07ph8YR0LTSTi", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_6pzzBcXnRUrC7ClGxkbfyifOL0tKELXmDQsGffzFx8N", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413478333} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Email", "activity_at": "2021-08-25T21:15:36+00:00", "attachments": [], "bcc": [], "body_html": "Hello Jean,
\n
\nYour bulk edit in Close was completed successfully.
\n
\nSearch query: *
\nAction: Change lead status to "Interested".
\n
\nAll 2 leads were modified successfully.
\n
\nThanks,
\nClose Support
\nsupport@close.com
\n
\n
\n", "body_preview": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Change lead status to \"Interested\".\n\nAll 2 leads were modified successfully.\n\nThanks,\nClose Support\nsupport@cl", "body_text": "Hello Jean,\n\nYour bulk edit in Close was completed successfully.\n\nSearch query: *\nAction: Change lead status to \"Interested\".\n\nAll 2 leads were modified successfully.\n\nThanks,\nClose Support\nsupport@close.com\n\n\n", "bulk_email_action_id": null, "cc": [], "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2021-08-25T21:15:36+00:00", "date_scheduled": null, "date_sent": "2021-08-25T21:15:36+00:00", "date_updated": "2022-11-08T12:36:05.979000+00:00", "direction": "outgoing", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "envelope": {"bcc": [], "cc": [], "date": "Wed, 25 Aug 2021 21:15:36 +0000", "from": [{"email": "integration-test@airbyte.io", "name": "'Close CRM' via Integration tests"}], "in_reply_to": null, "is_autoreply": false, "message_id": "<162992613594.10130.17609834081606867635@closeio-tasktiger-other-7bd975b8f7-f5phd>", "reply_to": [{"email": "support@close.com", "name": "Close CRM"}], "sender": [{"email": "support@close.com", "name": ""}], "subject": "Your bulk edit for Airbyte is done", "to": [{"email": "integration-test@airbyte.io", "name": ""}]}, "followup_sequence_delay": null, "followup_sequence_id": null, "has_reply": false, "id": "acti_iNuDRoYQ5w17aiH9BRIfN2gHbWBth11m4D16q9mxkdn", "in_reply_to_id": null, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "message_ids": ["<162992613594.10130.17609834081606867635@closeio-tasktiger-other-7bd975b8f7-f5phd>"], "need_smtp_credentials": false, "opens": [], "opens_summary": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "references": [], "send_as_id": null, "send_attempts": [], "sender": "'Close CRM' via Integration tests ", "sequence_id": null, "sequence_name": null, "sequence_subscription_id": null, "status": "sent", "subject": "Your bulk edit for Airbyte is done", "template_id": null, "template_name": null, "thread_id": "acti_3rQgtNnE0L7Wo90WzgOXcbfSR2WCjOBipMrAq41yJFE", "to": ["integration-test@airbyte.io"], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:36:05.981000", "date_updated": "2022-11-08T12:36:05.981000", "id": "ev_5D16kNj1ChExjyV0jxW3ZF", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_iNuDRoYQ5w17aiH9BRIfN2gHbWBth11m4D16q9mxkdn", "object_type": "activity.email", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413478335} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2021-08-25T21:15:36.001000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2021-08-25T21:15:36.001000+00:00", "date_updated": "2022-11-08T12:36:05.975000+00:00", "email_ids": ["acti_iNuDRoYQ5w17aiH9BRIfN2gHbWBth11m4D16q9mxkdn"], "id": "acti_3rQgtNnE0L7Wo90WzgOXcbfSR2WCjOBipMrAq41yJFE", "latest_normalized_subject": "Your bulk edit for Airbyte is done", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "integration-test@airbyte.io", "name": "'Close CRM' via Integration tests"}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:36:05.977000", "date_updated": "2022-11-08T12:36:05.977000", "id": "ev_4wxQqVuMzg5TJ64zZsvNq1", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_3rQgtNnE0L7Wo90WzgOXcbfSR2WCjOBipMrAq41yJFE", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413478337} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "last_billed_price", "next_billing_on"], "data": {"address_id": null, "bundle_id": null, "carrier": "twilio", "country": "US", "date_created": "2022-11-08T12:35:29.464000+00:00", "date_updated": "2022-11-08T12:35:33.618000+00:00", "forward_to": null, "forward_to_enabled": false, "forward_to_formatted": null, "id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "is_group_number": false, "is_verified": false, "label": null, "last_billed_price": "1.15", "mms_enabled": true, "next_billing_on": "2022-12-07", "number": "+14156251293", "number_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "press_1_to_accept": true, "sms_enabled": true, "supports_mms_to_countries": ["CA", "US"], "supports_sms_to_countries": ["CA", "PR", "US"], "type": "internal", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "voicemail_greeting_url": null}, "date_created": "2022-11-08T12:35:33.628000", "date_updated": "2022-11-08T12:35:33.628000", "id": "ev_7bWeUoANNhA4EgHCa5TgnM", "lead_id": null, "meta": {}, "object_id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "object_type": "phone_number", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:35:29.464000+00:00", "last_billed_price": null, "next_billing_on": "2022-11-07"}, "request_id": null, "user_id": null}, "emitted_at": 1670413478339} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["default_caller_id", "primary_personal_number"], "data": {"country": "US", "default_caller_id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "hangup_recording_url": null, "id": "memb_HETbVNHM1DQq9NgkJkeG6pFNNaLWMRDloahsFzPUVyH", "is_free": false, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "permissions_granted": ["bulk_delete", "bulk_edit", "bulk_email", "bulk_import", "bulk_sequence_subscriptions", "call_coach_barge", "call_coach_listen", "calling", "delete_leads", "delete_own_activities", "delete_own_opportunities", "delete_own_tasks", "export", "manage_customizations", "manage_email_sequences", "manage_group_numbers", "manage_organization", "manage_others_activities", "manage_others_opportunities", "manage_others_tasks", "manage_team_email_templates", "manage_team_smart_views", "merge_leads"], "primary_personal_number": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "record_calls": false, "role": "admin", "role_id": "admin", "track_email_opens": true, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:35:29.476000", "date_updated": "2022-11-08T12:35:29.476000", "id": "ev_3ujc4KLgsv9zzSIWoSUEBF", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/phone_number/request/internal/"}, "object_id": "memb_HETbVNHM1DQq9NgkJkeG6pFNNaLWMRDloahsFzPUVyH", "object_type": "membership", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"default_caller_id": null, "primary_personal_number": null}, "request_id": "req_5CrV6GWmp7vwMRfvTm7fkd", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478341} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"address_id": null, "bundle_id": null, "carrier": "twilio", "country": "US", "date_created": "2022-11-08T12:35:29.464000+00:00", "date_updated": "2022-11-08T12:35:29.464000+00:00", "forward_to": null, "forward_to_enabled": false, "forward_to_formatted": null, "id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "is_group_number": false, "is_verified": false, "label": null, "last_billed_price": null, "mms_enabled": true, "next_billing_on": "2022-11-07", "number": "+14156251293", "number_formatted": "+1 415-625-1293", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "press_1_to_accept": true, "sms_enabled": true, "supports_mms_to_countries": ["CA", "US"], "supports_sms_to_countries": ["CA", "PR", "US"], "type": "internal", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "voicemail_greeting_url": null}, "date_created": "2022-11-08T12:35:29.466000", "date_updated": "2022-11-08T12:35:29.466000", "id": "ev_01nqUobTbIKXuHsANWyfvK", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/phone_number/request/internal/"}, "object_id": "phon_jhMWlB6anhT8vcsGNEFukaVl806zfxCgbSAAkvtNBpN", "object_type": "phone_number", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_5CrV6GWmp7vwMRfvTm7fkd", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413478343} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "n_emails", "participants"], "data": {"_type": "EmailThread", "activity_at": "2021-09-17T21:29:12.001000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2021-09-17T21:29:12.001000+00:00", "date_updated": "2022-11-08T12:35:29.323000+00:00", "email_ids": ["acti_aHMyKom3arlMpEVXQYPNxASS0Luskq7sNLAl3Z23vyE", "acti_3Mapa6JtEWAYWsQU2xF6sPDFz97slwbmFqhye8vDxAV", "acti_DvkhzZr7BulOSmgomLFc3htdTwCDnu85eEoDuL8qQ9R", "acti_cz7ITkJ0XVxLg6IGHjISOt0ETJiMtvzCvuKkC5HNZlj", "acti_gF8wEbqW7Cx3fDIQTCnejQ3cOQKXLsE5md5JN88z4Lx", "acti_RyrqEGKMJKZldE6blecDGgmoWwVC2Thm3E2dPYXscss"], "id": "acti_ca3UUwuIKEStBlyz5WsmniBKV60eVZCxVknub1SSnyL", "latest_normalized_subject": "Sandbox Account", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 6, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "john@airbyte.io", "name": "Jean Lafleur"}, {"email": "sherif@airbyte.io", "name": "Sherif Nada"}, {"email": "integration-test@airbyte.io", "name": "'Nick Persico' via Integration tests"}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:35:28.447000", "date_updated": "2022-11-08T12:35:29.326000", "id": "ev_3BLvdgGQ7EX5BdhSkEHSPf", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_ca3UUwuIKEStBlyz5WsmniBKV60eVZCxVknub1SSnyL", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:35:28.244000+00:00", "n_emails": 1, "participants": [{"email": "john@airbyte.io", "name": "Jean Lafleur"}]}, "request_id": null, "user_id": null}, "emitted_at": 1670413479029} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "EmailThread", "activity_at": "2021-09-17T21:29:12.001000+00:00", "contact_id": null, "created_by": null, "created_by_name": null, "date_created": "2021-09-17T21:29:12.001000+00:00", "date_updated": "2022-11-08T12:35:28.244000+00:00", "email_ids": ["acti_aHMyKom3arlMpEVXQYPNxASS0Luskq7sNLAl3Z23vyE"], "id": "acti_ca3UUwuIKEStBlyz5WsmniBKV60eVZCxVknub1SSnyL", "latest_normalized_subject": "Sandbox Account", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "n_emails": 1, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "participants": [{"email": "john@airbyte.io", "name": "Jean Lafleur"}], "updated_by": null, "updated_by_name": null, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": ["user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"]}, "date_created": "2022-11-08T12:35:28.247000", "date_updated": "2022-11-08T12:35:28.247000", "id": "ev_3vrey02xMDE3lexg84zdJn", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {}, "object_id": "acti_ca3UUwuIKEStBlyz5WsmniBKV60eVZCxVknub1SSnyL", "object_type": "activity.email_thread", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": null, "user_id": null}, "emitted_at": 1670413479043} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "note"], "data": {"_type": "Note", "activity_at": "2022-11-08T12:26:32.324000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:26:32.324000+00:00", "date_updated": "2022-11-08T12:26:34.786000+00:00", "id": "acti_gdEJ9MEBXycdmPViSYFS92PYJyQqIGTgx0iP0PvDutQ", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "note": "Test note", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:26:33.563000", "date_updated": "2022-11-08T12:26:34.788000", "id": "ev_53cI1v8TDwmq9IuNDGcsJ1", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/note/acti_gdEJ9MEBXycdmPViSYFS92PYJyQqIGTgx0iP0PvDutQ/"}, "object_id": "acti_gdEJ9MEBXycdmPViSYFS92PYJyQqIGTgx0iP0PvDutQ", "object_type": "activity.note", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:26:32.324000+00:00", "note": "T"}, "request_id": "req_21wlxnpaBv7LLvLK6VgaQb", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479045} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Note", "activity_at": "2022-11-08T12:26:32.324000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:26:32.324000+00:00", "date_updated": "2022-11-08T12:26:32.324000+00:00", "id": "acti_gdEJ9MEBXycdmPViSYFS92PYJyQqIGTgx0iP0PvDutQ", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "note": "T", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:26:32.325000", "date_updated": "2022-11-08T12:26:32.325000", "id": "ev_3igaC0pFXy6LzbeJAtS3w3", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/note/"}, "object_id": "acti_gdEJ9MEBXycdmPViSYFS92PYJyQqIGTgx0iP0PvDutQ", "object_type": "activity.note", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_5Bej9W8VGldC4u7TCgwc9C", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479047} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "opportunity_due", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": "cont_XZV5fWf7skLHu1NrWmcu2Bb5T2hjFx1wMm3YKh4Pvdh", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-30", "date_created": "2022-11-08T12:26:13.663000+00:00", "date_updated": "2022-11-08T12:26:13.663000+00:00", "id": "noti_92aFlB5tcmbJW89lg4fTyBOdAJFJt13bToBOvzypOw5", "is_complete": false, "is_new": true, "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": "oppo_dZRZrkuLZqxtoVlK3bwAmKM3UyIgHW9gc1Gkr7SOtvR", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "future"}, "date_created": "2022-11-08T12:26:13.665000", "date_updated": "2022-11-08T12:26:13.665000", "id": "ev_4OhcKNuRQzkt59vkuQWAzl", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"request_method": "POST", "request_path": "/api/v1/opportunity/"}, "object_id": "noti_92aFlB5tcmbJW89lg4fTyBOdAJFJt13bToBOvzypOw5", "object_type": "task.opportunity_due", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_144EXd1t5vEgKMB3UaKThN", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479049} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"annualized_expected_value": 50000, "annualized_value": 100000, "confidence": 50, "contact_id": "cont_XZV5fWf7skLHu1NrWmcu2Bb5T2hjFx1wMm3YKh4Pvdh", "contact_name": "Company 1", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_Ci7oJh7QiC0Bizd4Lcw9jrDLSC5OSWGux5O0YLbyzBw": "12345", "custom.cf_Z6Vyxe2J0lrRqFpWQQGLkPo8iwhmZ9hzWc69ll2oFox": "2022-11-23", "date_created": "2022-11-08T12:26:13.638000+00:00", "date_lost": null, "date_updated": "2022-11-08T12:26:13.638000+00:00", "date_won": "2022-11-30", "expected_value": 50000, "id": "oppo_dZRZrkuLZqxtoVlK3bwAmKM3UyIgHW9gc1Gkr7SOtvR", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "note": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "status_label": "Demo Completed", "status_type": "active", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "value": 100000, "value_currency": "USD", "value_formatted": "$1,000", "value_period": "one_time"}, "date_created": "2022-11-08T12:26:13.639000", "date_updated": "2022-11-08T12:26:13.639000", "id": "ev_4ljZRD5w6ODs6567o0VvDM", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"request_method": "POST", "request_path": "/api/v1/opportunity/"}, "object_id": "oppo_dZRZrkuLZqxtoVlK3bwAmKM3UyIgHW9gc1Gkr7SOtvR", "object_type": "opportunity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_144EXd1t5vEgKMB3UaKThN", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479051} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2022-11-08", "date_created": "2022-11-08T12:25:32.733000+00:00", "date_updated": "2022-11-08T12:25:32.733000+00:00", "due_date": "2022-11-08", "id": "task_gwhiRc96yDf2eXxh31ZhPgCEnTJYuRlV3xg2EMFD7Pp", "is_complete": false, "is_dateless": false, "is_new": true, "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "lead_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Follow up", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "inbox"}, "date_created": "2022-11-08T12:25:32.734000", "date_updated": "2022-11-08T12:25:32.734000", "id": "ev_1ly5Zt1SJCX7kpBHI863HK", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"request_method": "POST", "request_path": "/api/v1/task/"}, "object_id": "task_gwhiRc96yDf2eXxh31ZhPgCEnTJYuRlV3xg2EMFD7Pp", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_54iiY92Up2Wx63BPatUGJw", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479053} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "Created", "activity_at": "2022-11-08T12:25:18.399000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:25:18.399000+00:00", "date_updated": "2022-11-08T12:25:18.415000+00:00", "id": "acti_32MAr5WHnmOsYHOjucM11mMoVcrg6K3nNu3z7dux3Bt", "import_id": null, "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "source": "ui", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:25:18.417000", "date_updated": "2022-11-08T12:25:18.417000", "id": "ev_2JiofVZFKgQdUuJFfvIKPl", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "acti_32MAr5WHnmOsYHOjucM11mMoVcrg6K3nNu3z7dux3Bt", "object_type": "activity.created", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_4nhO3wK1MORA5ifqPMSsjq", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479055} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"addresses": [], "contact_ids": ["cont_XZV5fWf7skLHu1NrWmcu2Bb5T2hjFx1wMm3YKh4Pvdh"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:25:18.399000+00:00", "date_updated": "2022-11-08T12:25:18.407000+00:00", "description": "", "display_name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "name": "has:phone_numbers opportunities:0 calls:0 tasks:0", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "status_label": "Potential", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": null}, "date_created": "2022-11-08T12:25:18.409000", "date_updated": "2022-11-08T12:25:18.409000", "id": "ev_5Auh2AVrAe7WziM0ML7f8A", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_4nhO3wK1MORA5ifqPMSsjq", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479057} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:25:18.403000+00:00", "date_updated": "2022-11-08T12:25:18.403000+00:00", "emails": [], "id": "cont_XZV5fWf7skLHu1NrWmcu2Bb5T2hjFx1wMm3YKh4Pvdh", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "name": "Company 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "phones": [], "title": "", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "urls": []}, "date_created": "2022-11-08T12:25:18.404000", "date_updated": "2022-11-08T12:25:18.404000", "id": "ev_71DiT1Xbe28O09iKBiIP8d", "lead_id": "lead_WRRmEJY2eU5AJq1oQqpJsg2S1mCSbTXfSEEQ2GmbiHT", "meta": {"request_method": "POST", "request_path": "/api/v1/lead/"}, "object_id": "cont_XZV5fWf7skLHu1NrWmcu2Bb5T2hjFx1wMm3YKh4Pvdh", "object_type": "contact", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_4nhO3wK1MORA5ifqPMSsjq", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479058} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status_id", "status_label"], "data": {"addresses": [{"address_1": "PO Box 7775 #69574", "address_2": null, "city": "San Francisco", "country": "US", "label": "mailing", "state": "CA", "zipcode": "94120"}], "contact_ids": ["cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Website", "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "Stark Industries", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Software", "custom.cf_mhBoQeiuwFRlz7zqyi4kJgzUreEoUp0hUsLwrnUTEgh": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:03.315000+00:00", "date_updated": "2022-11-08T12:23:58.287000+00:00", "description": "Visit our blog for high quality sales content, blog.close.com!", "display_name": "Close (Example\u00a0Lead)", "id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "name": "Close (Example\u00a0Lead)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "status_label": "Interested", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": "https://close.com"}, "date_created": "2022-11-08T12:23:58.288000", "date_updated": "2022-11-08T12:23:58.288000", "id": "ev_1OoEXljfwYcbCIpPRFU1vX", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz/"}, "object_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:23:55.706000+00:00", "status_id": "stat_K2bWWhgZqujhdsO1FPg189wAapaKMVH7bi7FwPqjFfy", "status_label": "Bad Fit"}, "request_id": "req_6bo3OapLJOAYVfVmc7AdLM", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479060} +{"stream": "events", "data": {"action": "deleted", "api_key_id": null, "changed_fields": [], "data": {}, "date_created": "2022-11-08T12:23:58.268000", "date_updated": "2022-11-08T12:23:58.268000", "id": "ev_7YE49ZGYW8wXSwGfRi2MR6", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz/"}, "object_id": "acti_Izu3pwypT6WFGEdj2vmrmdWDm8VzVwqsEJRRg6sdUtz", "object_type": "activity.lead_status_change", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"_type": "LeadStatusChange", "activity_at": "2022-11-08T12:23:53.514000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:23:55.692000+00:00", "date_updated": "2022-11-08T12:23:55.692000+00:00", "id": "acti_Izu3pwypT6WFGEdj2vmrmdWDm8VzVwqsEJRRg6sdUtz", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "new_status_id": "stat_K2bWWhgZqujhdsO1FPg189wAapaKMVH7bi7FwPqjFfy", "new_status_label": "Bad Fit", "old_status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "old_status_label": "Interested", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "request_id": "req_6bo3OapLJOAYVfVmc7AdLM", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479062} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "status_id", "status_label"], "data": {"addresses": [{"address_1": "PO Box 7775 #69574", "address_2": null, "city": "San Francisco", "country": "US", "label": "mailing", "state": "CA", "zipcode": "94120"}], "contact_ids": ["cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu"], "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Website", "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "Stark Industries", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Software", "custom.cf_mhBoQeiuwFRlz7zqyi4kJgzUreEoUp0hUsLwrnUTEgh": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:03.315000+00:00", "date_updated": "2022-11-08T12:23:55.706000+00:00", "description": "Visit our blog for high quality sales content, blog.close.com!", "display_name": "Close (Example\u00a0Lead)", "id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "name": "Close (Example\u00a0Lead)", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status_id": "stat_K2bWWhgZqujhdsO1FPg189wAapaKMVH7bi7FwPqjFfy", "status_label": "Bad Fit", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "url": "https://close.com"}, "date_created": "2022-11-08T12:23:53.540000", "date_updated": "2022-11-08T12:23:55.708000", "id": "ev_7aWFP37nceHIqEp7DwONRo", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz/"}, "object_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "object_type": "lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:22:49.404000+00:00", "status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "status_label": "Interested"}, "request_id": "req_3JmYhzQTnIIdGEvnpVyHzh", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479064} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_created", "date_updated", "new_status_id", "new_status_label"], "data": {"_type": "LeadStatusChange", "activity_at": "2022-11-08T12:23:53.514000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:23:55.692000+00:00", "date_updated": "2022-11-08T12:23:55.692000+00:00", "id": "acti_Izu3pwypT6WFGEdj2vmrmdWDm8VzVwqsEJRRg6sdUtz", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "new_status_id": "stat_K2bWWhgZqujhdsO1FPg189wAapaKMVH7bi7FwPqjFfy", "new_status_label": "Bad Fit", "old_status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "old_status_label": "Interested", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:23:55.693000", "date_updated": "2022-11-08T12:23:55.693000", "id": "ev_525fK6J16O65zXmJYEt5FC", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz/"}, "object_id": "acti_Izu3pwypT6WFGEdj2vmrmdWDm8VzVwqsEJRRg6sdUtz", "object_type": "activity.lead_status_change", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_created": "2022-11-08T12:23:53.514000+00:00", "date_updated": "2022-11-08T12:23:53.514000+00:00", "new_status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "new_status_label": "Potential"}, "request_id": "req_3JmYhzQTnIIdGEvnpVyHzh", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479066} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "LeadStatusChange", "activity_at": "2022-11-08T12:23:53.514000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:23:53.514000+00:00", "date_updated": "2022-11-08T12:23:53.514000+00:00", "id": "acti_Izu3pwypT6WFGEdj2vmrmdWDm8VzVwqsEJRRg6sdUtz", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "new_status_id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "new_status_label": "Potential", "old_status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "old_status_label": "Interested", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:23:53.515000", "date_updated": "2022-11-08T12:23:53.515000", "id": "ev_68zpjg9cijFE12r9eYOFDk", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/lead/lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz/"}, "object_id": "acti_Izu3pwypT6WFGEdj2vmrmdWDm8VzVwqsEJRRg6sdUtz", "object_type": "activity.lead_status_change", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_65uxn9RdqN4eNVwFsNPTXK", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479068} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["custom.cf_jxTmWbZeP5LEVL4vokkPvTW0VPUU2UHobsphKgUB6xK", "date_updated", "status"], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:22:27.750000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Blog", "custom.cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm": "Yes", "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "BiffCo", "custom.cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Finance", "custom.cf_jxTmWbZeP5LEVL4vokkPvTW0VPUU2UHobsphKgUB6xK": "Test", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Decision Maker"], "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "date_created": "2022-11-08T12:22:27.750000+00:00", "date_updated": "2022-11-08T12:22:49.393000+00:00", "id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "published", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:22:49.391000", "date_updated": "2022-11-08T12:22:49.395000", "id": "ev_4LfOCBksYcFA9EWLhrtlZw", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/custom/acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg/"}, "object_id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"custom.cf_jxTmWbZeP5LEVL4vokkPvTW0VPUU2UHobsphKgUB6xK": "Tes", "date_updated": "2022-11-08T12:22:47.673000+00:00", "status": "draft"}, "request_id": "req_3qba0Ddk3Q59EegWyQ3s8S", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479070} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["custom.cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm", "custom.cf_jxTmWbZeP5LEVL4vokkPvTW0VPUU2UHobsphKgUB6xK", "date_updated"], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:22:27.750000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Blog", "custom.cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm": "Yes", "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "BiffCo", "custom.cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Finance", "custom.cf_jxTmWbZeP5LEVL4vokkPvTW0VPUU2UHobsphKgUB6xK": "Tes", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Decision Maker"], "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "date_created": "2022-11-08T12:22:27.750000+00:00", "date_updated": "2022-11-08T12:22:47.673000+00:00", "id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "draft", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:22:44.330000", "date_updated": "2022-11-08T12:22:47.675000", "id": "ev_79LLiJI0FsIVfFzzjoKuYI", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/custom/acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg/"}, "object_id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"custom.cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm": null, "custom.cf_jxTmWbZeP5LEVL4vokkPvTW0VPUU2UHobsphKgUB6xK": null, "date_updated": "2022-11-08T12:22:41.033000+00:00"}, "request_id": "req_1GTiTlOUGhjdxJchSGTa5n", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479072} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4", "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D", "date_updated"], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:22:27.750000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": "Blog", "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": "BiffCo", "custom.cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Finance", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Decision Maker"], "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "date_created": "2022-11-08T12:22:27.750000+00:00", "date_updated": "2022-11-08T12:22:41.033000+00:00", "id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "draft", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:22:37.732000", "date_updated": "2022-11-08T12:22:41.034000", "id": "ev_2uGxTkxcBLtVrx5Trg2LE7", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/custom/acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg/"}, "object_id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"custom.cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4": null, "custom.cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D": null, "date_updated": "2022-11-08T12:22:34.039000+00:00"}, "request_id": "req_1le5cPa3QASuPtD9IVQb89", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479074} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi", "date_updated"], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:22:27.750000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": "Finance", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Decision Maker"], "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "date_created": "2022-11-08T12:22:27.750000+00:00", "date_updated": "2022-11-08T12:22:34.039000+00:00", "id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "draft", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:22:30.759000", "date_updated": "2022-11-08T12:22:34.041000", "id": "ev_7EO0o4p0zuoxokFYHl1gzN", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/custom/acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg/"}, "object_id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"custom.cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim": null, "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": null, "date_updated": "2022-11-08T12:22:27.750000+00:00"}, "request_id": "req_0X1fK7MRrU3IqRoNdCtXXu", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479076} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:22:27.750000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "date_created": "2022-11-08T12:22:27.750000+00:00", "date_updated": "2022-11-08T12:22:27.750000+00:00", "id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "draft", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:22:27.753000", "date_updated": "2022-11-08T12:22:27.753000", "id": "ev_0QMMaXQQnG1YrNXyoLLxv8", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/custom/"}, "object_id": "acti_t80QOzF2GF9gLmVIT0qCT9vPO83UwrTo5EKLrMmg8Mg", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_0ywdnTfCeai600A57Jy0zN", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479077} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "date_updated", "status"], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:22:15.986000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "Test task 1", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "date_created": "2022-11-08T12:22:15.986000+00:00", "date_updated": "2022-11-08T12:22:20.377000+00:00", "id": "acti_dnwf7iS7FXehp2sJCe2OUbW1mmU6K2J2cRoD0qsWL7Q", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "published", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:22:19.006000", "date_updated": "2022-11-08T12:22:20.379000", "id": "ev_0TRgME6RzTxANyAHjKGaYH", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/activity/custom/acti_dnwf7iS7FXehp2sJCe2OUbW1mmU6K2J2cRoD0qsWL7Q/"}, "object_id": "acti_dnwf7iS7FXehp2sJCe2OUbW1mmU6K2J2cRoD0qsWL7Q", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "T", "date_updated": "2022-11-08T12:22:15.986000+00:00", "status": "draft"}, "request_id": "req_2cG16xIEM3Xe8viW6dcSda", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479079} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "CustomActivity", "activity_at": "2022-11-08T12:22:15.986000+00:00", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "custom.cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ": "T", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "date_created": "2022-11-08T12:22:15.986000+00:00", "date_updated": "2022-11-08T12:22:15.986000+00:00", "id": "acti_dnwf7iS7FXehp2sJCe2OUbW1mmU6K2J2cRoD0qsWL7Q", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "status": "draft", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:22:15.987000", "date_updated": "2022-11-08T12:22:15.987000", "id": "ev_7kagHPOKWaY3hjZUsSVB8U", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "POST", "request_path": "/api/v1/activity/custom/"}, "object_id": "acti_dnwf7iS7FXehp2sJCe2OUbW1mmU6K2J2cRoD0qsWL7Q", "object_type": "activity.custom_activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_5nrOFBl0yR3LuPzH7tBOKX", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479081} +{"stream": "events", "data": {"action": "completed", "api_key_id": null, "changed_fields": [], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2021-07-18", "date_created": "2021-07-13T11:39:03.520000+00:00", "date_updated": "2022-11-08T12:21:15.730000+00:00", "due_date": "2021-07-18", "id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "is_complete": true, "is_dateless": null, "is_new": false, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "lead_name": "Close (Example\u00a0Lead)", "object_id": "acti_POPD3uA7lSfdf4xLO7PgsxKeoJS1dCRthzQRb13Xbyw", "object_type": "taskcompleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Call Steli", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-08T12:21:15.731000", "date_updated": "2022-11-08T12:21:15.731000", "id": "ev_7gBZ4QMG9NtI2jsIsRSQyi", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1hfYNFl8zoiUrmqxoiORkh", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479083} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "object_id", "object_type"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2021-07-18", "date_created": "2021-07-13T11:39:03.520000+00:00", "date_updated": "2022-11-08T12:21:15.730000+00:00", "due_date": "2021-07-18", "id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "is_complete": true, "is_dateless": null, "is_new": false, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "lead_name": "Close (Example\u00a0Lead)", "object_id": "acti_POPD3uA7lSfdf4xLO7PgsxKeoJS1dCRthzQRb13Xbyw", "object_type": "taskcompleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Call Steli", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-08T12:21:15.731000", "date_updated": "2022-11-08T12:21:15.731000", "id": "ev_2OVbleX8RkNGuc6dUfxGgF", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2022-11-08T12:21:10.369000+00:00", "object_id": null, "object_type": null}, "request_id": "req_1hfYNFl8zoiUrmqxoiORkh", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479085} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"_type": "TaskCompleted", "activity_at": "2022-11-08T12:21:15.641000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date_created": "2022-11-08T12:21:15.641000+00:00", "date_updated": "2022-11-08T12:21:15.641000+00:00", "id": "acti_POPD3uA7lSfdf4xLO7PgsxKeoJS1dCRthzQRb13Xbyw", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "task_assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "task_assigned_to_name": "Jean Lafleur", "task_id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "task_text": "Call Steli", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "users": []}, "date_created": "2022-11-08T12:21:15.652000", "date_updated": "2022-11-08T12:21:15.652000", "id": "ev_6cXrUFKDAEQugy8oEVSI35", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "acti_POPD3uA7lSfdf4xLO7PgsxKeoJS1dCRthzQRb13Xbyw", "object_type": "activity.task_completed", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_1hfYNFl8zoiUrmqxoiORkh", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479087} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["date_updated", "is_complete", "is_new", "view"], "data": {"_type": "lead", "assigned_to": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "assigned_to_name": "Jean Lafleur", "contact_id": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by_name": "Jean Lafleur", "date": "2021-07-18", "date_created": "2021-07-13T11:39:03.520000+00:00", "date_updated": "2022-11-08T12:21:10.369000+00:00", "due_date": "2021-07-18", "id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "is_complete": true, "is_dateless": null, "is_new": false, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "lead_name": "Close (Example\u00a0Lead)", "object_id": null, "object_type": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "text": "Call Steli", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by_name": "Jean Lafleur", "view": "archive"}, "date_created": "2022-11-08T12:21:10.370000", "date_updated": "2022-11-08T12:21:10.370000", "id": "ev_5bJynTce8kHV9dga4lrUJd", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "meta": {"request_method": "PUT", "request_path": "/api/v1/task/"}, "object_id": "task_bboTdYSlGqTBSXF0FEwhBOywDCV6iKDyMWiEfNFi7sW", "object_type": "task.lead", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"date_updated": "2021-07-13T11:39:03.520000+00:00", "is_complete": false, "is_new": true, "view": "inbox"}, "request_id": "req_1hfYNFl8zoiUrmqxoiORkh", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479089} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:08:57.596115", "date_updated": "2022-11-08T12:08:57.596115", "id": "repo_4uMZpQGz6LXEh197wx8QWe", "name": "Report 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owner_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "payload": {"data": {"dateRanges": [{"end": "2022-11-08", "label": "This Week", "start": "2022-11-06"}], "leaderboardMetric": "opportunities.won.all.count", "metrics": ["meetings.upcoming.count", "leads.created.all.count", "calls.outbound.all.count", "calls.inbound.all.count", "calls.all.all.avg_duration", "emails.sent.all.count", "emails.received.all.count", "opportunities.created.all.count", "opportunities.won.all.count", "opportunities.won.all.sum_annualized_value", "opportunities.lost.all.sum_annualized_value", "emails.sent.sequences.count"], "smartViewId": null, "users": []}, "uiMetadata": {"showLeaderboard": true}}, "report_type": "overview", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "version": 1}, "date_created": "2022-11-08T12:08:57.596000", "date_updated": "2022-11-08T12:08:57.596000", "id": "ev_7dO6bv3SuNK4XUuU4L2oT1", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/report/saved/"}, "object_id": "repo_4uMZpQGz6LXEh197wx8QWe", "object_type": "reporting.saved_report", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_05pI7vbZJYvgBpwGd16eoQ", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479091} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:48.571475", "date_updated": "2022-11-08T12:07:48.571481", "id": "seq_7gEZ4ByvvLv1rI6szKolhR", "name": "Sequence 2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "schedule_id": "sched_3MvlPuSqL0NGJyY95MBMpF", "status": "active", "steps": [{"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:48.623996", "date_updated": "2022-11-08T12:07:48.624000", "delay": 3600, "email_template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "threading": "old_thread", "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "timezone": "Europe/Kiev", "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:07:48.571000", "date_updated": "2022-11-08T12:07:48.571000", "id": "ev_1cfwmTAG19rFSvARAhkixc", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/sequence/"}, "object_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "object_type": "sequence", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_78TMVAw9kul0EJ90j7wDQP", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479093} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:06.184401", "date_updated": "2022-11-08T12:07:06.184405", "id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "name": "Sequence 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "schedule_id": "sched_1eL83fHJodv0OtoibuJFAw", "status": "active", "steps": [{"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:06.191662", "date_updated": "2022-11-08T12:07:06.191665", "delay": 0, "email_template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "threading": "old_thread", "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, {"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:06.191692", "date_updated": "2022-11-08T12:07:06.191693", "delay": 259200, "email_template_id": null, "id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "threading": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "timezone": "Europe/Kiev", "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:07:06.184000", "date_updated": "2022-11-08T12:07:06.184000", "id": "ev_0k6mFolJqnB73OS7YlM153", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/sequence/"}, "object_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "object_type": "sequence", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2j8BmxU2J9DftxkiTW1nlO", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479094} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:05:22.107134", "date_updated": "2022-11-08T12:05:22.107134", "id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "is_shared": false, "name": "SMS 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "owned_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status": "active", "text": "Hi!", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:05:22.107000", "date_updated": "2022-11-08T12:05:22.107000", "id": "ev_4XEbj5heQW7G8pW2VJe04B", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/graphql/"}, "object_id": "smstmpl_6zpaSGDsZyhBhrQH0jmZK9", "object_type": "sms_template", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2YIS3svDoEbtJYeCm7Ol8J", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479096} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"accepts_multiple_values": false, "back_reference_is_visible": null, "choices": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "date_created": "2022-11-08T12:03:47.935000+00:00", "date_updated": "2022-11-08T12:03:47.935000+00:00", "description": "Test description", "editable_with_roles": [], "id": "cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "is_shared": false, "name": "Test 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "referenced_custom_type_id": "", "required": false, "type": "text", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:03:47.936000", "date_updated": "2022-11-08T12:03:47.936000", "id": "ev_5UzxflgWUHeL7TK7LQVoly", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/custom_field/activity/"}, "object_id": "cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "object_type": "custom_fields.activity", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_3WXgE0ZbPPbovlbA9yhpxg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479098} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["fields"], "data": {"api_create_only": false, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:03:27.631229", "date_updated": "2022-11-08T12:03:27.631229", "description": null, "editable_with_roles": [], "fields": [{"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": "Test description", "editable_with_roles": [], "id": "cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "is_shared": false, "name": "Test 1", "referenced_custom_type_id": null, "required": false, "type": "text"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": "Test activity", "editable_with_roles": [], "id": "cf_aea8B3HHCHNaoNIqzpH6HLvYqvlxCbZNZU8OkhkAuuW", "is_shared": false, "name": "Test Actvity", "referenced_custom_type_id": null, "required": false, "type": "datetime"}], "id": "actitype_4cMlNQsx560XS5dhcUpxp2", "name": "Meeting Activity 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:03:27.631000", "date_updated": "2022-11-08T12:03:27.631000", "id": "ev_7j8UuwrEuLxKJj14Bf8kDZ", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/custom_field/activity/"}, "object_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "object_type": "custom_activity_type", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"fields": [{"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": "Test description", "editable_with_roles": [], "id": "cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "is_shared": false, "name": "Test 1", "referenced_custom_type_id": null, "required": false, "type": "text"}]}, "request_id": "req_3derTyObZvV4OsJk3uAN3T", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479100} +{"stream": "events", "data": {"action": "created", "api_key_id": null, "changed_fields": [], "data": {"api_create_only": false, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:03:27.631229", "date_updated": "2022-11-08T12:03:27.631229", "description": null, "editable_with_roles": [], "fields": [], "id": "actitype_4cMlNQsx560XS5dhcUpxp2", "name": "Meeting Activity 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:03:27.631000", "date_updated": "2022-11-08T12:03:27.631000", "id": "ev_73dldkQDrteAlURhAiPJqa", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/custom_activity/"}, "object_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "object_type": "custom_activity_type", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {}, "request_id": "req_2ZiYa8uUgeCHHyp2xSj9X1", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479102} +{"stream": "events", "data": {"action": "updated", "api_key_id": null, "changed_fields": ["fields"], "data": {"api_create_only": false, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:03:27.631229", "date_updated": "2022-11-08T12:03:27.631229", "description": null, "editable_with_roles": [], "fields": [{"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": "Test description", "editable_with_roles": [], "id": "cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "is_shared": false, "name": "Test 1", "referenced_custom_type_id": null, "required": false, "type": "text"}], "id": "actitype_4cMlNQsx560XS5dhcUpxp2", "name": "Meeting Activity 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "date_created": "2022-11-08T12:03:27.631000", "date_updated": "2022-11-08T12:03:27.631000", "id": "ev_6di0YZ4bw7LrhudXYaJQII", "lead_id": null, "meta": {"request_method": "POST", "request_path": "/api/v1/custom_field/activity/"}, "object_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "object_type": "custom_activity_type", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "previous_data": {"fields": []}, "request_id": "req_3WXgE0ZbPPbovlbA9yhpxg", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413479104} +{"stream": "lead_custom_fields", "data": {"id": "cf_mhBoQeiuwFRlz7zqyi4kJgzUreEoUp0hUsLwrnUTEgh", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "choices": null, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_updated": "2021-07-13T11:39:01.352000+00:00", "editable_with_roles": [], "date_created": "2021-07-13T11:39:01.352000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "is_shared": false, "type": "user", "description": null, "referenced_custom_type_id": null, "name": "Lead Owner", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi"}, "emitted_at": 1670413480265} +{"stream": "contact_custom_fields", "data": {"choices": null, "is_shared": false, "type": "date", "description": null, "name": "Birthday", "referenced_custom_type_id": null, "date_created": "2021-08-11T18:05:14.598000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-08-11T18:05:14.598000+00:00", "back_reference_is_visible": null, "accepts_multiple_values": false, "id": "cf_Qj3b4cWxvmvqTtZ0U5TaprRDah8g7jRsavfVh8NCPcu", "editable_with_roles": []}, "emitted_at": 1670413481482} +{"stream": "opportunity_custom_fields", "data": {"description": null, "type": "text", "referenced_custom_type_id": null, "is_shared": false, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "back_reference_is_visible": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "cf_pzwnr4IYZvEqq68ENLlWknEZdVsPk53rd3571eRcP56", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "choices": null, "date_created": "2021-07-13T11:39:01.714000+00:00", "editable_with_roles": [], "accepts_multiple_values": false, "date_updated": "2021-07-13T11:39:01.714000+00:00", "name": "Contract Link (Example)"}, "emitted_at": 1670413482616} +{"stream": "opportunity_custom_fields", "data": {"description": null, "type": "choices", "referenced_custom_type_id": null, "is_shared": false, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "back_reference_is_visible": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "cf_aDbTIccjcJ9GQqM0xqA8uqgjYuEclhLMxnqfG3TAhsx", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "choices": ["Widget A", "Widget B", "Widget C"], "date_created": "2021-07-13T11:39:01.447000+00:00", "editable_with_roles": [], "accepts_multiple_values": true, "date_updated": "2021-07-13T11:39:01.447000+00:00", "name": "Product (Example)"}, "emitted_at": 1670413482619} +{"stream": "opportunity_custom_fields", "data": {"description": null, "type": "date", "referenced_custom_type_id": null, "is_shared": false, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "back_reference_is_visible": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "cf_Z6Vyxe2J0lrRqFpWQQGLkPo8iwhmZ9hzWc69ll2oFox", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "choices": null, "date_created": "2021-07-13T11:39:01.676000+00:00", "editable_with_roles": [], "accepts_multiple_values": false, "date_updated": "2021-07-13T11:39:01.676000+00:00", "name": "Renewal Date (Example)"}, "emitted_at": 1670413482623} +{"stream": "opportunity_custom_fields", "data": {"description": null, "type": "text", "referenced_custom_type_id": null, "is_shared": false, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "back_reference_is_visible": null, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "cf_Ci7oJh7QiC0Bizd4Lcw9jrDLSC5OSWGux5O0YLbyzBw", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "choices": null, "date_created": "2021-07-13T11:39:01.815000+00:00", "editable_with_roles": [], "accepts_multiple_values": false, "date_updated": "2021-07-13T11:39:01.815000+00:00", "name": "Tracking ID (Example)"}, "emitted_at": 1670413482626} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:02.212000+00:00", "description": null, "editable_with_roles": [], "referenced_custom_type_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Contact", "choices": null, "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2021-07-13T11:39:02.212000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "contact", "id": "cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "required": false}, "emitted_at": 1670413483835} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:02.744000+00:00", "description": null, "editable_with_roles": [], "referenced_custom_type_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Current Vendor: Other (if applicable)", "choices": null, "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2021-07-13T11:39:02.744000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "text", "id": "cf_3W4n175LyZ3QMfr665jUS19nt2QATHyM7QaxXQC4QqA", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "required": false}, "emitted_at": 1670413483836} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:02.478000+00:00", "description": null, "editable_with_roles": [], "referenced_custom_type_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Industry: Other (if applicable)", "choices": null, "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2021-07-13T11:39:02.478000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "text", "id": "cf_bp93vNo2vxbmM2QhQ7JvdytgcozCCGmOklTG9E8rDYa", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "required": false}, "emitted_at": 1670413483838} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:03.083000+00:00", "description": null, "editable_with_roles": [], "referenced_custom_type_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Next Steps", "choices": null, "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2021-07-13T11:39:03.083000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "textarea", "id": "cf_ldS8XBbJo4PxIpBYkA3XWQkwY3aGqHxJxDRV7sMTsaA", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "required": false}, "emitted_at": 1670413483840} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:03.149000+00:00", "description": null, "editable_with_roles": [], "referenced_custom_type_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Notes", "choices": null, "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2021-07-13T11:39:03.149000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "textarea", "id": "cf_jxTmWbZeP5LEVL4vokkPvTW0VPUU2UHobsphKgUB6xK", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "required": false}, "emitted_at": 1670413483841} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:02.826000+00:00", "description": null, "editable_with_roles": [], "referenced_custom_type_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Number of Potential Users", "choices": null, "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2021-07-13T11:39:02.826000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "number", "id": "cf_i1zuHB2hra0uMSHQuDvkx3niXapGCORwWL5t9mO6w6Q", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "required": false}, "emitted_at": 1670413483842} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:03.285000+00:00", "description": null, "editable_with_roles": [], "referenced_custom_type_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Qualified?", "choices": ["Yes", "No"], "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2021-07-13T11:39:03.285000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "choices", "id": "cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "required": false}, "emitted_at": 1670413483843} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2021-07-13T11:39:03.006000+00:00", "description": null, "editable_with_roles": [], "referenced_custom_type_id": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Referral Source: Other (if applicable)", "choices": null, "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2021-07-13T11:39:03.006000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "text", "id": "cf_WKYpud81IJKhD0uFmxm12baU0YcAuTN3nE6TzktrJoT", "custom_activity_type_id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "required": false}, "emitted_at": 1670413483845} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-08T12:03:47.935000+00:00", "description": "Test description", "editable_with_roles": [], "referenced_custom_type_id": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Test 1", "choices": null, "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2022-11-08T12:03:47.935000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "text", "id": "cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "required": false}, "emitted_at": 1670413483846} +{"stream": "activity_custom_fields", "data": {"created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-08T14:27:04.532000+00:00", "description": "Test activity", "editable_with_roles": [], "referenced_custom_type_id": "", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "name": "Test Actvity", "choices": null, "is_shared": false, "back_reference_is_visible": null, "accepts_multiple_values": false, "date_created": "2022-11-08T14:27:04.532000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "type": "datetime", "id": "cf_aea8B3HHCHNaoNIqzpH6HLvYqvlxCbZNZU8OkhkAuuW", "custom_activity_type_id": "actitype_4cMlNQsx560XS5dhcUpxp2", "required": false}, "emitted_at": 1670413483848} +{"stream": "users", "data": {"email_verification_token_generated_at": null, "last_used_timezone": "Europe/Kiev", "first_name": "Jean", "last_name": "Lafleur", "image": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef", "id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "email": "integration-test@airbyte.io", "email_verified_at": "2021-07-13T11:37:23.175000+00:00", "date_updated": "2021-10-25T07:34:51.339000+00:00", "date_created": "2021-07-13T11:36:04.905000+00:00", "organizations": ["orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi"]}, "emitted_at": 1670413485584} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Yowan R", "phones": [{"phone_formatted": "+1 646-255-8418", "phone": "+16462558418", "country": "US", "type": "office"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2022-11-11T09:00:52.289000+00:00", "emails": [], "date_updated": "2022-11-11T09:02:10.996000+00:00", "name": "Yowan R", "id": "cont_b4h4BcmWn7rKbnsHQ0JfADwXGgndbpc5JlQEdHHyv78", "lead_id": "lead_AUtZm7EBlaSbYqOrDjIZEuC4tfhLxTDtaK9jlEPMb3y", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Yowan%20R"}], "title": "Product Manager"}, "emitted_at": 1670413486808} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Iryna", "phones": [{"phone_formatted": "+1 415-623-6785", "phone": "+14156236785", "country": "US", "type": "office"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2022-11-08T15:54:42.381000+00:00", "emails": [{"email": "irina.grankova@gmail.com", "type": "office"}], "date_updated": "2022-11-09T11:31:18.119000+00:00", "name": "Iryna", "id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Iryna"}], "title": "Test Lead"}, "emitted_at": 1670413486810} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Cooper", "phones": [], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2022-07-05T21:01:25.612000+00:00", "emails": [], "date_updated": "2022-07-05T21:01:25.612000+00:00", "name": "Cooper", "id": "cont_Dsi7AGMRelIZ2I6DIKicaGJU7mwxPZElLIHy33xbjCM", "lead_id": "lead_Eohw2Vf6WOKZHQ97nS1UTL3iV62pAJFX3ROgJ5WT4cY", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Cooper"}], "title": ""}, "emitted_at": 1670413486812} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Bruce Wayne", "phones": [{"phone_formatted": "+1 415-623-6785", "phone": "+14156236785", "country": "US", "type": "office"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2021-07-13T11:39:04.977000+00:00", "emails": [{"email": "thedarkknight@close.com", "type": "office"}], "date_updated": "2022-11-08T15:01:17.915000+00:00", "name": "Bruce Wayne", "id": "cont_ubIO1eBUVw3iFJ1Ot4LY12R7oADqn7bsLUF7NU2fJO6", "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Bruce%20Wayne"}], "title": "The Dark Knight", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Decision Maker", "Point of Contact"]}, "emitted_at": 1670413486814} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Tobias F\u00fcnke", "phones": [], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2021-07-13T11:39:04.441000+00:00", "emails": [{"email": "tobiasfunke@close.com", "type": "office"}], "date_updated": "2021-07-13T11:39:04.441000+00:00", "name": "Tobias F\u00fcnke", "id": "cont_at5uglNbyasFp2KsoWQpjQmLp4lmmqX2p1nhvmPYytq", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Tobias%20F%C3%BCnke"}], "title": "Blue Man Group (Understudy)", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Point of Contact"]}, "emitted_at": 1670413486816} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Gob Bluth", "phones": [{"phone_formatted": "+1 202-555-0186", "phone": "+12025550186", "country": "US", "type": "office"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2021-07-13T11:39:04.430000+00:00", "emails": [{"email": "bluth@close.com", "type": "office"}], "date_updated": "2021-07-13T11:39:04.430000+00:00", "name": "Gob Bluth", "id": "cont_fcD6Y7PO1v6Olb4gGs36mLtLhOjyRA9SjuXEpwBVyhI", "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Gob%20Bluth"}], "title": "Magician", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Gatekeeper"]}, "emitted_at": 1670413486818} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Support", "phones": [], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2021-07-13T11:39:03.380000+00:00", "emails": [{"email": "support@close.com", "type": "office"}], "date_updated": "2021-07-13T11:39:03.380000+00:00", "name": "Support", "id": "cont_CI5c6Ekew0cyhSgoFIXeaz2PJVmmtigF2XNIGUDXKnu", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Support"}], "title": null}, "emitted_at": 1670413486819} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Customer Success Team", "phones": [{"phone_formatted": "+1 833-462-5673", "phone": "+18334625673", "country": "US", "type": "office"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2021-07-13T11:39:03.374000+00:00", "emails": [{"email": "success@close.com", "type": "office"}], "date_updated": "2021-07-13T11:39:03.374000+00:00", "name": "Customer Success Team", "id": "cont_4cmimyQMTMi61kc72mLAV9XdHdddw6LR1LqzvoNdSuV", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Customer%20Success%20Team"}], "title": null}, "emitted_at": 1670413486821} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Nick Persico", "phones": [{"phone_formatted": "+1 833-462-5673", "phone": "+18334625673", "country": "US", "type": "office"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2021-07-13T11:39:03.366000+00:00", "emails": [{"email": "nick@close.com", "type": "office"}], "date_updated": "2021-07-13T11:39:03.366000+00:00", "name": "Nick Persico", "id": "cont_FY5ws8upMQQyD9vKg4jzwRb6V3MLctQeNTc2NaUmAyo", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Nick%20Persico"}], "title": "Director of Revenue", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Gatekeeper", "Point of Contact"]}, "emitted_at": 1670413486823} +{"stream": "contacts", "data": {"updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "display_name": "Steli Efti", "phones": [{"phone_formatted": "+1 650-517-6539", "phone": "+16505176539", "country": "US", "type": "office"}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "urls": [], "date_created": "2021-07-13T11:39:03.354000+00:00", "emails": [{"email": "sales@close.com", "type": "office"}], "date_updated": "2021-07-13T11:39:03.354000+00:00", "name": "Steli Efti", "id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "integration_links": [{"name": "LinkedIn Search", "url": "https://www.linkedin.com/search/results/people/?keywords=Steli%20Efti"}], "title": "CEO & Co-Founder", "custom.cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi": ["Decision Maker"]}, "emitted_at": 1670413486826} +{"stream": "opportunities", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "oppo_NkKuhUWfDoErNArh44hw7jkkx7sCl5bhlamtezmX7BE", "status_display_name": "Demo Completed", "user_name": "Jean Lafleur", "date_updated": "2021-07-13T11:39:04.817000+00:00", "value_formatted": "$3,000", "date_won": "2021-07-16", "date_lost": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [], "status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "date_created": "2021-07-13T11:39:04.817000+00:00", "value": 300000, "annualized_value": 300000, "contact_name": null, "note": "Gob's ready to buy a $3,000 suit.", "created_by_name": "Jean Lafleur", "expected_value": 225000, "value_currency": "USD", "updated_by_name": "Jean Lafleur", "contact_id": null, "annualized_expected_value": 225000, "lead_id": "lead_p7HyK4BZKAZJH2m8AAhFpcla2E0fDa6TACgU8KWv7o2", "lead_name": "Bluth Company (Example\u00a0Lead)", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status_label": "Demo Completed", "confidence": 75, "value_period": "one_time", "status_type": "active"}, "emitted_at": 1670413488117} +{"stream": "opportunities", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "oppo_jXatpqaQ3HK50yBO9vMWg2wFyHoqbCJtgbRYAMuEGor", "status_display_name": "Demo Completed", "user_name": "Jean Lafleur", "date_updated": "2021-07-13T11:39:05.061000+00:00", "value_formatted": "$500", "date_won": "2021-07-15", "date_lost": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [], "status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "date_created": "2021-07-13T11:39:05.061000+00:00", "value": 50000, "annualized_value": 50000, "contact_name": null, "note": "Bruce needs new software for the Bat Cave.", "created_by_name": "Jean Lafleur", "expected_value": 37500, "value_currency": "USD", "updated_by_name": "Jean Lafleur", "contact_id": null, "annualized_expected_value": 37500, "lead_id": "lead_MH9KHM5OqPHgTyGj5liiN3LTPIyuGBqzBS4uzkTtpeN", "lead_name": "Wayne Enterprises (Example\u00a0Lead)", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status_label": "Demo Completed", "confidence": 75, "value_period": "one_time", "status_type": "active"}, "emitted_at": 1670413488122} +{"stream": "opportunities", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "id": "oppo_1TfmaSLuECcdSQIBnjUOBj1gAXdyrp4SFaogvcEmtbk", "status_display_name": "Proposal Sent", "user_name": "Jean Lafleur", "date_updated": "2021-08-18T10:26:44.306000+00:00", "value_formatted": "$500", "date_won": "2021-07-15", "date_lost": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [], "status_id": "stat_AWXzFJkvkHVyJQPFulY0wM7LrQRiMEtQChGumG035bH", "date_created": "2021-07-13T11:39:04.284000+00:00", "value": 50000, "annualized_value": 50000, "contact_name": "Steli Efti", "note": "Use opportunities to track which stage of the pipeline your deals are in and the revenue associated with them.", "created_by_name": "Jean Lafleur", "expected_value": 37500, "value_currency": "USD", "updated_by_name": "Jean Lafleur", "contact_id": "cont_2ZhjI4qVESIBNDPJTeQF5avXJoMJ65TZoIelDXaswCI", "annualized_expected_value": 37500, "lead_id": "lead_87BPw5opGPqBjSpz70L28NzDyBmJZHHdc3bvVt6JRlz", "lead_name": "Close (Example\u00a0Lead)", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "status_label": "Proposal Sent", "confidence": 75, "value_period": "one_time", "status_type": "active"}, "emitted_at": 1670413488127} +{"stream": "opportunities", "data": {"user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "integration_links": [], "id": "oppo_QtfwXdJFxmOLRzd3mirP7S5vWWYTEho2uWtHYNSiOUE", "value_currency": "USD", "value": 10000, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "confidence": 50, "status_type": "active", "lead_id": "lead_aVZGHXTPH0GfOguQ9vMQBZI6PpISOEzmwp8GBMmWZ3j", "date_created": "2022-11-08T15:55:27.750000+00:00", "annualized_value": 10000, "created_by_name": "Jean Lafleur", "contact_name": "Iryna", "date_won": "2022-11-16", "expected_value": 5000, "annualized_expected_value": 5000, "note": "Test", "lead_name": "Test Lead", "status_display_name": "Demo Completed", "value_period": "one_time", "status_label": "Demo Completed", "contact_id": "cont_OH7f9TYVgcDMqiSmL6Jawba9bxOIumKXD3NYtmClWAP", "date_lost": null, "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "user_name": "Jean Lafleur", "status_id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_updated": "2022-11-08T15:55:27.750000+00:00", "updated_by_name": "Jean Lafleur", "value_formatted": "$100"}, "emitted_at": 1670413488957} +{"stream": "roles", "data": {"date_created": "0001-01-01T00:00:00", "date_updated": "0001-01-01T00:00:00", "editable": false, "id": "admin", "name": "Admin", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "permissions": ["bulk_delete", "bulk_edit", "bulk_email", "bulk_import", "bulk_sequence_subscriptions", "call_coach_barge", "call_coach_listen", "calling", "delete_leads", "delete_own_activities", "delete_own_opportunities", "delete_own_tasks", "export", "manage_customizations", "manage_email_sequences", "manage_group_numbers", "manage_organization", "manage_others_activities", "manage_others_opportunities", "manage_others_tasks", "manage_team_email_templates", "manage_team_smart_views", "merge_leads"]}, "emitted_at": 1670413490323} +{"stream": "roles", "data": {"date_created": "0001-01-01T00:00:00", "date_updated": "0001-01-01T00:00:00", "editable": false, "id": "restricteduser", "name": "Restricted User", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "permissions": ["delete_own_activities", "delete_own_opportunities", "delete_own_tasks", "calling"]}, "emitted_at": 1670413490324} +{"stream": "roles", "data": {"date_created": "0001-01-01T00:00:00", "date_updated": "0001-01-01T00:00:00", "editable": false, "id": "superuser", "name": "Super User", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "permissions": ["bulk_delete", "bulk_edit", "bulk_email", "bulk_import", "bulk_sequence_subscriptions", "call_coach_barge", "call_coach_listen", "calling", "delete_leads", "delete_own_activities", "delete_own_opportunities", "delete_own_tasks", "export", "manage_customizations", "manage_email_sequences", "manage_group_numbers", "manage_others_activities", "manage_others_opportunities", "manage_others_tasks", "manage_team_email_templates", "manage_team_smart_views", "merge_leads"]}, "emitted_at": 1670413490324} +{"stream": "roles", "data": {"date_created": "0001-01-01T00:00:00", "date_updated": "0001-01-01T00:00:00", "editable": false, "id": "user", "name": "User", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "permissions": ["bulk_email", "bulk_import", "bulk_sequence_subscriptions", "delete_leads", "delete_own_activities", "delete_own_opportunities", "delete_own_tasks", "manage_others_activities", "manage_others_opportunities", "manage_others_tasks", "merge_leads", "calling"]}, "emitted_at": 1670413490325} +{"stream": "lead_statuses", "data": {"id": "stat_HrZ1aYkkxRORQSxdBcNPT31HkqxkK2w2uWGiK6yjkmK", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Potential"}, "emitted_at": 1670413491791} +{"stream": "lead_statuses", "data": {"id": "stat_I73shDEVu3FGzxWmP7Jti3MC6aJEdYH4e036HF1bk7k", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Customer"}, "emitted_at": 1670413491794} +{"stream": "lead_statuses", "data": {"id": "stat_K2bWWhgZqujhdsO1FPg189wAapaKMVH7bi7FwPqjFfy", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Bad Fit"}, "emitted_at": 1670413491797} +{"stream": "lead_statuses", "data": {"id": "stat_jga2oW6LFtDEZgkR6TYMLqaQK2inzquXRM8EmHDQoZr", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Canceled"}, "emitted_at": 1670413491800} +{"stream": "lead_statuses", "data": {"id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Interested"}, "emitted_at": 1670413491803} +{"stream": "lead_statuses", "data": {"id": "stat_se20ELRSIqLXHrKhyE52KI9WkGqy1qPkUZUcg4O1OQa", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Not Interested"}, "emitted_at": 1670413491806} +{"stream": "lead_statuses", "data": {"id": "stat_y6v7svdpj3v1ZHd1GoiJFcKrUGrA0jl2Af53jfGbkN9", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Qualified"}, "emitted_at": 1670413491808} +{"stream": "opportunity_statuses", "data": {"id": "stat_CZr5826cyG8wqIg4tD6bbjaqePP4HAYOMSLgOhi1Xbf", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Lost", "type": "lost", "pipeline_id": "pipe_0IAl41rGk9OPls9CdxFpHy"}, "emitted_at": 1670413493028} +{"stream": "opportunity_statuses", "data": {"id": "stat_gaqEGSVHIFzrofTfzzg5UfjyBZ1B6KERccIy2MOp8FG", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Won", "type": "won", "pipeline_id": "pipe_0IAl41rGk9OPls9CdxFpHy"}, "emitted_at": 1670413493030} +{"stream": "opportunity_statuses", "data": {"id": "stat_ObYTUqjVZW0nTZXjvHhzMGyK999e42WZdIhkaNq12En", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Contract Sent", "type": "active", "pipeline_id": "pipe_0IAl41rGk9OPls9CdxFpHy"}, "emitted_at": 1670413493031} +{"stream": "opportunity_statuses", "data": {"id": "stat_AWXzFJkvkHVyJQPFulY0wM7LrQRiMEtQChGumG035bH", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Proposal Sent", "type": "active", "pipeline_id": "pipe_0IAl41rGk9OPls9CdxFpHy"}, "emitted_at": 1670413493033} +{"stream": "opportunity_statuses", "data": {"id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "label": "Demo Completed", "type": "active", "pipeline_id": "pipe_0IAl41rGk9OPls9CdxFpHy"}, "emitted_at": 1670413493034} +{"stream": "pipelines", "data": {"created_by": null, "date_created": "2021-07-13T11:36:04.983404", "date_updated": "2021-07-13T11:36:04.983404", "id": "pipe_0IAl41rGk9OPls9CdxFpHy", "name": "Sales", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "statuses": [{"id": "stat_pI63Ohv8ByAaIFsguWoGCOP8FPV9vL9YJ8VbxTXgSe6", "label": "Demo Completed", "type": "active"}, {"id": "stat_AWXzFJkvkHVyJQPFulY0wM7LrQRiMEtQChGumG035bH", "label": "Proposal Sent", "type": "active"}, {"id": "stat_ObYTUqjVZW0nTZXjvHhzMGyK999e42WZdIhkaNq12En", "label": "Contract Sent", "type": "active"}, {"id": "stat_gaqEGSVHIFzrofTfzzg5UfjyBZ1B6KERccIy2MOp8FG", "label": "Won", "type": "won"}, {"id": "stat_CZr5826cyG8wqIg4tD6bbjaqePP4HAYOMSLgOhi1Xbf", "label": "Lost", "type": "lost"}], "updated_by": null}, "emitted_at": 1670413494291} +{"stream": "email_templates", "data": {"attachments": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "subject": "{{ lead.display_name }} + {{ organization.name }}", "is_shared": true, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "body": "Hi {{ contact.first_name }},

I'm {{ user.first_name }} with {{ organization.name }}. We help companies in the {{ lead.custom.[\"Industry\"] }} space [INSERT YOUR PRODUCT/SERVICE]. I wanted to learn how you handle this currently at {{ lead.display_name }} and show you what we're working on.

Are you available for a quick call tomorrow afternoon?
", "name": "Email 1 - Intro", "is_archived": false, "date_created": "2021-07-13T11:39:00.497000+00:00", "id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "date_updated": "2022-08-11T18:11:08.966000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413495424} +{"stream": "email_templates", "data": {"attachments": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "subject": "{{ organization.name }} Follow-up", "is_shared": true, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "body": "Hi {{ contact.first_name }},

Friendly follow-up.

I wanted to show you how {{ organization.name }} can help you with [INSERT YOUR PRODUCT/SERVICE]. Do you have 15 minutes for a quick call this week?

- Wed @ 11AM
- Thur @ 2PM
- Fri @ 3PM
", "name": "Email 2 - Follow-up #1", "is_archived": false, "date_created": "2021-07-13T11:39:00.503000+00:00", "id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "date_updated": "2022-08-11T18:11:08.972000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413495427} +{"stream": "google_connected_accounts", "data": {"lead_suggestions_updated_at": "2022-11-08T12:13:45.711000+00:00", "default_identity": {"name": "Jean Lafleur", "email": "iryna.grankova@airbyte.io"}, "send_status": "ok", "smtp": {"use_ssl": true, "date_updated": "2022-11-08T12:13:40.319000+00:00", "host": "smtp.gmail.com", "username": "iryna.grankova@airbyte.io", "port": 465}, "available_features": ["calendar_syncing", "email_sending", "email_syncing"], "email": "iryna.grankova@airbyte.io", "latest_receive_error": null, "enabled_features": ["calendar_syncing", "email_sending", "email_syncing"], "is_imap_archive_sync_enabled": true, "synced_calendars": ["jf4v33abpv80jp1r8vhdfjonm0bj0sk9@import.calendar.google.com", "iryna.grankova@airbyte.io"], "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:13:40.319000+00:00", "receive_attempts_count": 0, "available_calendars": [{"id": "jf4v33abpv80jp1r8vhdfjonm0bj0sk9@import.calendar.google.com", "name": "Close Tasks: Jean Lafleur", "status": "ok", "synced": true}, {"id": "iryna.grankova@airbyte.io", "name": "iryna.grankova@airbyte.io", "status": "ok", "synced": true}], "sync_all_calendars": false, "receive_status": "ok", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "email_receive_status": "ok", "identities": [{"name": "Jean Lafleur", "email": "iryna.grankova@airbyte.io"}], "imap": {"use_ssl": true, "date_updated": "2022-11-08T12:13:40.319000+00:00", "host": "imap.gmail.com", "username": "iryna.grankova@airbyte.io", "port": 993}, "_type": "google", "calendar_receive_status": "ok", "latest_send_error": null}, "emitted_at": 1670413496664} +{"stream": "google_connected_accounts", "data": {"available_features": ["email_sending", "email_syncing"], "date_created": "2022-11-08T14:43:13.927000+00:00", "email": "integration-test@airbyte.io", "enabled_features": ["email_sending", "email_syncing"], "_type": "custom_email", "calendar_receive_status": null, "default_identity": {"name": "Jean Lafleur", "email": "integration-test@airbyte.io"}, "email_receive_status": "error", "latest_receive_error": null, "latest_send_error": null, "receive_status": "error", "send_status": "ok", "id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "identities": [{"name": "Jean Lafleur", "email": "integration-test@airbyte.io"}], "imap": {"use_ssl": true, "date_updated": "2022-11-08T14:43:13.927000+00:00", "host": "imap.gmail.com", "username": "iryna.grankova@globallogic.com", "port": 993}, "is_imap_archive_sync_enabled": true, "lead_suggestions_updated_at": "2022-11-08T14:43:17.844000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "receive_attempts_count": 0, "smtp": {"use_ssl": true, "date_updated": "2022-11-08T14:43:13.927000+00:00", "host": "smtp.gmail.com", "username": "iryna.grankova@globallogic.com", "port": 465}, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413496668} +{"stream": "google_connected_accounts", "data": {"lead_suggestions_updated_at": null, "default_identity": {"name": "Jean Lafleur", "email": "integration-test@airbyte.io"}, "send_status": null, "smtp": null, "available_features": [], "email": "integration-test@airbyte.io", "latest_receive_error": null, "enabled_features": [], "is_imap_archive_sync_enabled": true, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T13:13:08.795000+00:00", "receive_attempts_count": 0, "zoom_account_plan": null, "receive_status": null, "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "id": "emailacct_pSuPSwRBjmzoTYudYJRn9ENpaR3RAaRp7K2jJ8syPsp", "email_receive_status": null, "identities": [], "imap": null, "_type": "zoom", "calendar_receive_status": null, "latest_send_error": null}, "emitted_at": 1670413496672} +{"stream": "custom_email_connected_accounts", "data": {"available_calendars": [{"id": "jf4v33abpv80jp1r8vhdfjonm0bj0sk9@import.calendar.google.com", "name": "Close Tasks: Jean Lafleur", "status": "ok", "synced": true}, {"id": "iryna.grankova@airbyte.io", "name": "iryna.grankova@airbyte.io", "status": "ok", "synced": true}], "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "date_created": "2022-11-08T12:13:40.319000+00:00", "lead_suggestions_updated_at": "2022-11-08T12:13:45.711000+00:00", "receive_attempts_count": 0, "calendar_receive_status": "ok", "smtp": {"use_ssl": true, "date_updated": "2022-11-08T12:13:40.319000+00:00", "username": "iryna.grankova@airbyte.io", "port": 465, "host": "smtp.gmail.com"}, "sync_all_calendars": false, "imap": {"use_ssl": true, "date_updated": "2022-11-08T12:13:40.319000+00:00", "username": "iryna.grankova@airbyte.io", "port": 993, "host": "imap.gmail.com"}, "latest_send_error": null, "send_status": "ok", "default_identity": {"name": "Jean Lafleur", "email": "iryna.grankova@airbyte.io"}, "_type": "google", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "receive_status": "ok", "id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "email_receive_status": "ok", "email": "iryna.grankova@airbyte.io", "synced_calendars": ["jf4v33abpv80jp1r8vhdfjonm0bj0sk9@import.calendar.google.com", "iryna.grankova@airbyte.io"], "enabled_features": ["calendar_syncing", "email_sending", "email_syncing"], "identities": [{"name": "Jean Lafleur", "email": "iryna.grankova@airbyte.io"}], "latest_receive_error": null, "available_features": ["calendar_syncing", "email_sending", "email_syncing"], "is_imap_archive_sync_enabled": true}, "emitted_at": 1670413497986} +{"stream": "custom_email_connected_accounts", "data": {"available_features": ["email_sending", "email_syncing"], "date_created": "2022-11-08T14:43:13.927000+00:00", "email": "integration-test@airbyte.io", "enabled_features": ["email_sending", "email_syncing"], "_type": "custom_email", "calendar_receive_status": null, "default_identity": {"name": "Jean Lafleur", "email": "integration-test@airbyte.io"}, "email_receive_status": "error", "latest_receive_error": null, "latest_send_error": null, "receive_status": "error", "send_status": "ok", "id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "identities": [{"name": "Jean Lafleur", "email": "integration-test@airbyte.io"}], "imap": {"use_ssl": true, "date_updated": "2022-11-08T14:43:13.927000+00:00", "username": "iryna.grankova@globallogic.com", "port": 993, "host": "imap.gmail.com"}, "is_imap_archive_sync_enabled": true, "lead_suggestions_updated_at": "2022-11-08T14:43:17.844000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "receive_attempts_count": 0, "smtp": {"use_ssl": true, "date_updated": "2022-11-08T14:43:13.927000+00:00", "username": "iryna.grankova@globallogic.com", "port": 465, "host": "smtp.gmail.com"}, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413497990} +{"stream": "custom_email_connected_accounts", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "date_created": "2022-11-08T13:13:08.795000+00:00", "lead_suggestions_updated_at": null, "receive_attempts_count": 0, "calendar_receive_status": null, "smtp": null, "imap": null, "latest_send_error": null, "send_status": null, "default_identity": {"name": "Jean Lafleur", "email": "integration-test@airbyte.io"}, "_type": "zoom", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "receive_status": null, "id": "emailacct_pSuPSwRBjmzoTYudYJRn9ENpaR3RAaRp7K2jJ8syPsp", "email_receive_status": null, "email": "integration-test@airbyte.io", "zoom_account_plan": null, "enabled_features": [], "identities": [], "latest_receive_error": null, "available_features": [], "is_imap_archive_sync_enabled": true}, "emitted_at": 1670413497993} +{"stream": "zoom_connected_accounts", "data": {"latest_send_error": null, "identities": [{"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}], "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "enabled_features": ["calendar_syncing", "email_sending", "email_syncing"], "email_receive_status": "ok", "is_imap_archive_sync_enabled": true, "smtp": {"date_updated": "2022-11-08T12:13:40.319000+00:00", "port": 465, "use_ssl": true, "username": "iryna.grankova@airbyte.io", "host": "smtp.gmail.com"}, "available_calendars": [{"id": "jf4v33abpv80jp1r8vhdfjonm0bj0sk9@import.calendar.google.com", "name": "Close Tasks: Jean Lafleur", "status": "ok", "synced": true}, {"id": "iryna.grankova@airbyte.io", "name": "iryna.grankova@airbyte.io", "status": "ok", "synced": true}], "imap": {"date_updated": "2022-11-08T12:13:40.319000+00:00", "port": 993, "use_ssl": true, "username": "iryna.grankova@airbyte.io", "host": "imap.gmail.com"}, "lead_suggestions_updated_at": "2022-11-08T12:13:45.711000+00:00", "receive_status": "ok", "id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "available_features": ["calendar_syncing", "email_sending", "email_syncing"], "synced_calendars": ["jf4v33abpv80jp1r8vhdfjonm0bj0sk9@import.calendar.google.com", "iryna.grankova@airbyte.io"], "date_created": "2022-11-08T12:13:40.319000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "calendar_receive_status": "ok", "_type": "google", "sync_all_calendars": false, "email": "iryna.grankova@airbyte.io", "send_status": "ok", "latest_receive_error": null, "receive_attempts_count": 0, "default_identity": {"email": "iryna.grankova@airbyte.io", "name": "Jean Lafleur"}}, "emitted_at": 1670413499172} +{"stream": "zoom_connected_accounts", "data": {"available_features": ["email_sending", "email_syncing"], "date_created": "2022-11-08T14:43:13.927000+00:00", "email": "integration-test@airbyte.io", "enabled_features": ["email_sending", "email_syncing"], "_type": "custom_email", "calendar_receive_status": null, "default_identity": {"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}, "email_receive_status": "error", "latest_receive_error": null, "latest_send_error": null, "receive_status": "error", "send_status": "ok", "id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "identities": [{"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}], "imap": {"date_updated": "2022-11-08T14:43:13.927000+00:00", "port": 993, "use_ssl": true, "username": "iryna.grankova@globallogic.com", "host": "imap.gmail.com"}, "is_imap_archive_sync_enabled": true, "lead_suggestions_updated_at": "2022-11-08T14:43:17.844000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "receive_attempts_count": 0, "smtp": {"date_updated": "2022-11-08T14:43:13.927000+00:00", "port": 465, "use_ssl": true, "username": "iryna.grankova@globallogic.com", "host": "smtp.gmail.com"}, "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413499173} +{"stream": "zoom_connected_accounts", "data": {"latest_send_error": null, "identities": [], "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "enabled_features": [], "email_receive_status": null, "is_imap_archive_sync_enabled": true, "zoom_account_plan": null, "smtp": null, "imap": null, "lead_suggestions_updated_at": null, "receive_status": null, "id": "emailacct_pSuPSwRBjmzoTYudYJRn9ENpaR3RAaRp7K2jJ8syPsp", "available_features": [], "date_created": "2022-11-08T13:13:08.795000+00:00", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "calendar_receive_status": null, "_type": "zoom", "email": "integration-test@airbyte.io", "send_status": null, "latest_receive_error": null, "receive_attempts_count": 0, "default_identity": {"email": "integration-test@airbyte.io", "name": "Jean Lafleur"}}, "emitted_at": 1670413499173} +{"stream": "email_sequences", "data": {"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:06.184401", "date_updated": "2022-11-08T12:07:06.184405", "id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "name": "Sequence 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "schedule_id": "sched_1eL83fHJodv0OtoibuJFAw", "status": "active", "steps": [{"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:06.191662", "date_updated": "2022-11-08T12:07:06.191665", "delay": 0, "email_template_id": "tmpl_qbI7mmvEPJla4qdCeBygtzgZ7twup69mdEr2CEVNHIM", "id": "seqstep_5lFdCIwj4qVpdVMH3K26iQ", "required": true, "sms_template_id": null, "step_allowed_delay": null, "step_type": "email", "threading": "old_thread", "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, {"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:06.191692", "date_updated": "2022-11-08T12:07:06.191693", "delay": 259200, "email_template_id": null, "id": "seqstep_4YVJ2uoVccNHYG95qvwDQw", "required": false, "sms_template_id": null, "step_allowed_delay": 3600, "step_type": "call", "threading": null, "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "timezone": "Europe/Kiev", "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413501882} +{"stream": "email_sequences", "data": {"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:48.571475", "date_updated": "2022-11-08T12:07:48.571481", "id": "seq_7gEZ4ByvvLv1rI6szKolhR", "name": "Sequence 2", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "schedule_id": "sched_3MvlPuSqL0NGJyY95MBMpF", "status": "active", "steps": [{"created_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:07:48.623996", "date_updated": "2022-11-08T12:07:48.624000", "delay": 3600, "email_template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "id": "seqstep_71ELVa12hUsLg2ba3K74Yq", "required": true, "sms_template_id": null, "step_allowed_delay": null, "step_type": "email", "threading": "old_thread", "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}], "timezone": "Europe/Kiev", "updated_by_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413501886} +{"stream": "dialer", "data": {"caller_id": "", "date_created": "2022-11-08T14:27:23.185019", "date_updated": "2022-11-08T14:27:23.309015", "id": "dial_5qE6KYskn4PfT6oQLTe8ez", "is_user_dependent": false, "music_preference": "tone1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "ring_mode": "more-voicemails", "source_type": "saved-search", "source_value": "save_vL2ENUTpFhqrYHf97tm61Y9Sh6QughnuMURuIH4VDCC", "status": "inactive", "target_type": "lead", "type": "power", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "users": [{"is_active": false, "state": "inactive", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}]}, "emitted_at": 1670413503121} +{"stream": "smart_views", "data": {"date_created": "2022-11-08T15:50:57.032000+00:00", "date_updated": "2022-11-08T15:50:57.032000+00:00", "id": "save_UeQpNDWG0AuXKKunEIABD0qSjHvV62EFaTHzN70B6gN", "is_shared": false, "is_user_dependent": false, "name": "Deleted", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": null, "s_query": {"query": {"negate": false, "queries": [{"negate": false, "object_type": "lead", "type": "object_type"}, {"negate": false, "queries": [{"negate": false, "queries": [{"condition": {"before": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "end"}, "on_or_after": {"range": "today", "type": "start_end_of_predefined_relative_period", "which": "start"}, "type": "moment_range"}, "field": {"field_name": "date_created", "object_type": "lead", "type": "regular_field"}, "negate": false, "type": "field_condition"}], "type": "and"}], "type": "and"}], "type": "and"}, "results_limit": null, "sort": []}, "type": "lead", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413504430} +{"stream": "smart_views", "data": {"date_created": "2021-07-13T11:39:00.802000+00:00", "date_updated": "2021-07-13T11:39:00.802000+00:00", "id": "save_vL2ENUTpFhqrYHf97tm61Y9Sh6QughnuMURuIH4VDCC", "is_shared": true, "is_user_dependent": false, "name": "\ud83d\udce3 Untouched Leads", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "times_communicated:0 notes:0 tasks:0 opportunities:0", "s_query": null, "type": "lead", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413504433} +{"stream": "smart_views", "data": {"date_created": "2021-07-13T11:39:00.745000+00:00", "date_updated": "2021-07-13T11:39:00.745000+00:00", "id": "save_dnBmv1ixCRWNZ6P13oydsxGPLLxs94SWGzvBZIEqo3x", "is_shared": true, "is_user_dependent": false, "name": "\u260e\ufe0f Leads to Call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "has:phone_numbers opportunities:0 calls:0 tasks:0", "s_query": null, "type": "lead", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413504437} +{"stream": "smart_views", "data": {"date_created": "2021-07-13T11:39:00.692000+00:00", "date_updated": "2021-07-13T11:39:00.692000+00:00", "id": "save_mCZ7R5jZmhaajptwcnfOWccbxS9nMYpmcpHEOohcFwQ", "is_shared": true, "is_user_dependent": false, "name": "\ud83d\udceb Leads Never Emailed", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "emails:0 email_addresses > 0", "s_query": null, "type": "lead", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413504440} +{"stream": "smart_views", "data": {"date_created": "2021-07-13T11:39:00.634000+00:00", "date_updated": "2021-07-13T11:39:00.634000+00:00", "id": "save_hSAkrBcSGylFe7dGeHjQuU9FMui5yM6v3sufsy8mkqx", "is_shared": true, "is_user_dependent": false, "name": "\ud83d\udc40 Email Opened This Week", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "email(opened:\"this week\")", "s_query": null, "type": "lead", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413504443} +{"stream": "smart_views", "data": {"date_created": "2021-07-13T11:39:00.585000+00:00", "date_updated": "2021-07-13T11:39:00.585000+00:00", "id": "save_k6EKgxijrRdpphWnvpUx67LjAAn4Rl5RqHWdtz1IQsm", "is_shared": true, "is_user_dependent": false, "name": "\u231b No Contact > 30 Days", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "last_communication_date > \"30 days ago\"", "s_query": null, "type": "lead", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413504446} +{"stream": "smart_views", "data": {"date_created": "2021-07-13T11:39:00.526000+00:00", "date_updated": "2021-07-13T11:39:00.526000+00:00", "id": "save_JZR25dsPVlIZncKRfrxlWqwWB6nymYedCCVL7KVhLO3", "is_shared": true, "is_user_dependent": false, "name": "\ud83d\udcb8 Opportunity Follow-up", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "has:active_opportunities last_communication_date > \"7 days ago\"", "s_query": null, "type": "lead", "user_id": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413504448} +{"stream": "email_bulk_actions", "data": {"id": "bulkemail_bCJdPbYpJ2xfUuj8Dif3sBMHlxtbOKuEZSCdNcTgsWB", "date_created": "2022-11-08T12:58:33.566000+00:00", "date_updated": "2022-11-08T12:58:47.020000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "has:active_opportunities last_communication_date > \"7 days ago\"", "s_query": {"negate": false, "type": "match_all"}, "sort": [], "results_limit": null, "status": "done", "n_objects": 1, "n_objects_processed": 1, "n_leads": 1, "n_leads_processed": 1, "send_done_email": true, "template_id": "tmpl_Cilxd4yapDRweK6caKOTGzSHqyP9ddiEz4G0DLg0nwt", "contact_preference": "lead", "email_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "sender": "Jean Lafleur "}, "emitted_at": 1670413505751} +{"stream": "sequence_subscription_bulk_actions", "data": {"date_created": "2022-11-08T15:09:57.014000+00:00", "date_updated": "2022-11-08T15:10:17.831000+00:00", "action_type": "subscribe", "from_phone_number_id": null, "results_limit": null, "send_done_email": true, "sender_name": "Jean Lafleur", "calls_assigned_to": [], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "n_leads_processed": 11, "n_leads": 11, "id": "bulkseqsub_nB54SIHOmtafCyAri59aJc24OfcCWudvQFtIW6k7oJv", "query": "", "sequence_id": "seq_7gEZ4ByvvLv1rI6szKolhR", "contact_preference": "contact", "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "status": "done", "n_objects_processed": 11, "n_objects": 11, "sender_email": "integration-test@airbyte.io", "sort": [], "sender_account_id": "emailacct_chcWvlCbL58B28cadf8XzEjQymaAMyJW6uqGjdiqmHK", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi"}, "emitted_at": 1670413507091} +{"stream": "sequence_subscription_bulk_actions", "data": {"date_created": "2022-11-08T15:09:38.582000+00:00", "date_updated": "2022-11-08T15:09:55.730000+00:00", "action_type": "subscribe", "from_phone_number_id": null, "results_limit": null, "send_done_email": true, "sender_name": "Jean Lafleur", "calls_assigned_to": ["group_2WQ2sEM5fBJ2Ip0lWMyRLg"], "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "n_leads_processed": 11, "n_leads": 11, "id": "bulkseqsub_YrswODZaYxUAhKYKcOcIQCWRxzbUjlsIgno8viR55dw", "query": "", "sequence_id": "seq_17gkOeJEV1QPdPaOMJ9mTX", "contact_preference": "contact", "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "contact", "type": "object_type"}, {"negate": false, "queries": [], "type": "and"}], "type": "and"}, "status": "done", "n_objects_processed": 11, "n_objects": 11, "sender_email": "iryna.grankova@airbyte.io", "sort": [], "sender_account_id": "emailacct_QeGtVE7epttFYuPJqtqVqaKgW7BEq5q7jHx8M2IHxwe", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi"}, "emitted_at": 1670413507095} +{"stream": "delete_bulk_actions", "data": {"id": "bulkdelete_jfj3OxS8q9ri6uDwvr09Gwxl9Q6Oh3tgJ4cUPAaZq52", "date_created": "2022-11-08T15:49:38.627000+00:00", "date_updated": "2022-11-08T15:49:44.832000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "", "s_query": {"negate": false, "queries": [{"negate": false, "object_type": "lead", "type": "object_type"}, {"negate": false, "queries": [{"negate": false, "queries": [{"condition": {"before": {"range": "today", "which": "end", "type": "start_end_of_predefined_relative_period"}, "on_or_after": {"range": "today", "which": "start", "type": "start_end_of_predefined_relative_period"}, "type": "moment_range"}, "field": {"field_name": "date_created", "object_type": "lead", "type": "regular_field"}, "negate": false, "type": "field_condition"}], "type": "and"}], "type": "and"}], "type": "and"}, "sort": [], "results_limit": null, "status": "done", "n_objects": 3, "n_objects_processed": 3, "n_leads": 3, "n_leads_processed": 3, "send_done_email": true, "bulk_object_type": "lead"}, "emitted_at": 1670413508423} +{"stream": "edit_bulk_actions", "data": {"id": "bulkedit_GMBUd9rUAIfYnKXokMKXV1AHMQUm9yCMGXhh96xYlxr", "date_created": "2021-08-25T21:15:27.477000+00:00", "date_updated": "2021-08-25T21:15:35.868000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "*", "s_query": {"negate": false, "type": "match_all"}, "sort": [], "results_limit": null, "status": "done", "n_objects": 3, "n_objects_processed": 3, "n_leads": 3, "n_leads_processed": 3, "send_done_email": true, "type": "set_lead_status", "custom_field_name": null, "custom_field_value": null, "lead_status_id": "stat_nzPGZ5qJXdpP2GSFqzbPdyHgZWXkRfx6BjQih76ss0q"}, "emitted_at": 1670413509650} +{"stream": "edit_bulk_actions", "data": {"id": "bulkedit_mA19Kcb30egVp18LcMXP2OCTQaLsGJyWikJMXYu32kv", "date_created": "2021-08-25T21:03:43.590000+00:00", "date_updated": "2021-08-25T21:03:54.810000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "query": "*", "s_query": {"negate": false, "type": "match_all"}, "sort": [], "results_limit": null, "status": "done", "n_objects": 3, "n_objects_processed": 3, "n_leads": 3, "n_leads_processed": 3, "send_done_email": true, "type": "set_custom_field", "custom_field_name": "Lead Owner", "custom_field_value": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "lead_status_id": null}, "emitted_at": 1670413509653} +{"stream": "integration_links", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "date_updated": "2022-08-11T18:11:08.979000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:00.832000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "url": "https://google.com/search?q={{ lead.display_name }}", "name": "Google Search", "type": "lead", "id": "ilink_CUrmAjZi7dy3T5nodx6INqBAYMIme3HQ9In2Zm4PHI4"}, "emitted_at": 1670413510982} +{"stream": "integration_links", "data": {"organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "date_updated": "2022-08-11T18:11:08.993000+00:00", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:00.840000+00:00", "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "url": "https://www.linkedin.com/search/results/people/?keywords={{ contact.name }}", "name": "LinkedIn Search", "type": "contact", "id": "ilink_UFZJXoAlAiDsIbBMKPaK87FDp0hgjduPjRMcdjomGzS"}, "emitted_at": 1670413510985} +{"stream": "custom_activities", "data": {"api_create_only": false, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2022-11-08T12:03:27.631229", "date_updated": "2022-11-08T12:03:27.631229", "description": null, "editable_with_roles": [], "fields": [{"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": "Test description", "editable_with_roles": [], "id": "cf_KLkKl1BRUm4o7zknJtTkvp6TMFgff1984UelnlGN9mZ", "is_shared": false, "name": "Test 1", "referenced_custom_type_id": null, "required": false, "type": "text"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": "Test activity", "editable_with_roles": [], "id": "cf_aea8B3HHCHNaoNIqzpH6HLvYqvlxCbZNZU8OkhkAuuW", "is_shared": false, "name": "Test Actvity", "referenced_custom_type_id": null, "required": false, "type": "datetime"}], "id": "actitype_4cMlNQsx560XS5dhcUpxp2", "name": "Meeting Activity 1", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413512305} +{"stream": "custom_activities", "data": {"api_create_only": false, "created_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg", "date_created": "2021-07-13T11:39:01.879565", "date_updated": "2021-07-13T11:39:01.879565", "description": null, "editable_with_roles": [], "fields": [{"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_UftGNTS2rq9XMG9hOHkALp5cgn4Xl8nZqN7gReax3lc", "is_shared": false, "name": "Contact", "referenced_custom_type_id": null, "required": false, "type": "contact"}, {"accepts_multiple_values": true, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_oYaaZ3ikZjy6qc7htLdSWJxSxEZTova9HHLLLj67cyi", "is_shared": true, "name": "Contact Role", "referenced_custom_type_id": null, "required": false, "type": "choices"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_ZuP9X9UjiQzjptNHlT7DxzRATaFil2Ysoz0aGMq0Kim", "is_shared": true, "name": "Industry", "referenced_custom_type_id": null, "required": false, "type": "choices"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_bp93vNo2vxbmM2QhQ7JvdytgcozCCGmOklTG9E8rDYa", "is_shared": false, "name": "Industry: Other (if applicable)", "referenced_custom_type_id": null, "required": false, "type": "text"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_1exVDDcGOEiIdhBhBv2VEGqnpIcJZZqiWkk4O7hbU3D", "is_shared": true, "name": "Current Vendor/Software", "referenced_custom_type_id": null, "required": false, "type": "choices"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_3W4n175LyZ3QMfr665jUS19nt2QATHyM7QaxXQC4QqA", "is_shared": false, "name": "Current Vendor: Other (if applicable)", "referenced_custom_type_id": null, "required": false, "type": "text"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_i1zuHB2hra0uMSHQuDvkx3niXapGCORwWL5t9mO6w6Q", "is_shared": false, "name": "Number of Potential Users", "referenced_custom_type_id": null, "required": false, "type": "number"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_05o22yQYHMrFh4cCYCMSQJdSpODdabCbGQ8il5Do7X4", "is_shared": true, "name": "Referral Source", "referenced_custom_type_id": null, "required": false, "type": "choices"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_WKYpud81IJKhD0uFmxm12baU0YcAuTN3nE6TzktrJoT", "is_shared": false, "name": "Referral Source: Other (if applicable)", "referenced_custom_type_id": null, "required": false, "type": "text"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_ldS8XBbJo4PxIpBYkA3XWQkwY3aGqHxJxDRV7sMTsaA", "is_shared": false, "name": "Next Steps", "referenced_custom_type_id": null, "required": false, "type": "textarea"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_jxTmWbZeP5LEVL4vokkPvTW0VPUU2UHobsphKgUB6xK", "is_shared": false, "name": "Notes", "referenced_custom_type_id": null, "required": false, "type": "textarea"}, {"accepts_multiple_values": false, "back_reference_is_visible": null, "converting_to_type": null, "description": null, "editable_with_roles": [], "id": "cf_1cL7txuLyrTH6Cpw15KtPLPT36l9eOdlJLKUdosxQLm", "is_shared": false, "name": "Qualified?", "referenced_custom_type_id": null, "required": false, "type": "choices"}], "id": "actitype_0J9YvrOw4opjiYI4aDY6wj", "name": "Qualification Call", "organization_id": "orga_ya3w9oMjeLtWe7zFGZr63Dz8ruBbjybG0EIUdUXaESi", "updated_by": "user_SOwJFVMqtgZCL6QrMDLujSXbQabQnNfOwjFX1mdOulg"}, "emitted_at": 1670413512306} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-close-com/integration_tests/invalid_config.json b/airbyte-integrations/connectors/source-close-com/integration_tests/invalid_config.json index bec0adc7a1163b..ae6c037ea66d25 100644 --- a/airbyte-integrations/connectors/source-close-com/integration_tests/invalid_config.json +++ b/airbyte-integrations/connectors/source-close-com/integration_tests/invalid_config.json @@ -1,4 +1,4 @@ { "api_key": "api_wrong", - "start_date": "2021-01-01" + "start_date": "2021-01-01T00:00:00.000000+00:00" } diff --git a/airbyte-integrations/connectors/source-close-com/integration_tests/sample_config.json b/airbyte-integrations/connectors/source-close-com/integration_tests/sample_config.json index cf4a4484345fe4..faf916a8169661 100644 --- a/airbyte-integrations/connectors/source-close-com/integration_tests/sample_config.json +++ b/airbyte-integrations/connectors/source-close-com/integration_tests/sample_config.json @@ -1,4 +1,4 @@ { "api_key": "api_1234567890", - "start_date": "2021-01-01" + "start_date": "2021-01-01T00:00:00.000000+00:00" } diff --git a/airbyte-integrations/connectors/source-close-com/integration_tests/sample_state.json b/airbyte-integrations/connectors/source-close-com/integration_tests/sample_state.json index 55d4000dcff0fd..9288753ca9a18a 100644 --- a/airbyte-integrations/connectors/source-close-com/integration_tests/sample_state.json +++ b/airbyte-integrations/connectors/source-close-com/integration_tests/sample_state.json @@ -1,34 +1,34 @@ { "created_activities": { - "date_created": "2021-01-01" + "date_created": "2021-01-01T00:00:00.000000+00:00" }, "opportunity_status_change_activities": {}, "note_activities": { - "date_created": "2021-01-01" + "date_created": "2021-01-01T00:00:00.000000+00:00" }, "meeting_activities": {}, "call_activities": { - "date_created": "2021-01-01" + "date_created": "2021-01-01T00:00:00.000000+00:00" }, "email_activities": { - "date_created": "2021-01-01" + "date_created": "2021-01-01T00:00:00.000000+00:00" }, "email_thread_activities": { - "date_created": "2021-01-01" + "date_created": "2021-01-01T00:00:00.000000+00:00" }, "lead_status_change_activities": { - "date_created": "2021-01-01" + "date_created": "2021-01-01T00:00:00.000000+00:00" }, "sms_activities": { - "date_created": "2021-01-01" + "date_created": "2021-01-01T00:00:00.000000+00:00" }, "task_completed_activities": {}, "leads": {}, "lead_tasks": { - "date_created": "2021-01-01" + "date_created": "2021-01-01T00:00:00.000000+00:00" }, "incoming_email_tasks": { - "date_created": "2021-01-01" + "date_created": "2021-01-01T00:00:00.000000+00:00" }, "email_followup_tasks": { "date_created": "2050-07-13T11:39:03.520000+00:00" @@ -49,9 +49,9 @@ "date_created": "2050-07-13T11:39:03.520000+00:00" }, "events": { - "date_updated": "2021-01-01" + "date_updated": "2021-01-01T00:00:00.000000+00:00" }, "opportunities": { - "date_updated": "2021-01-01" + "date_updated": "2021-01-01T00:00:00.000000+00:00" } } diff --git a/airbyte-integrations/connectors/source-close-com/setup.py b/airbyte-integrations/connectors/source-close-com/setup.py index 9400772e183b06..7bc6d70de471c1 100644 --- a/airbyte-integrations/connectors/source-close-com/setup.py +++ b/airbyte-integrations/connectors/source-close-com/setup.py @@ -5,9 +5,7 @@ from setuptools import find_packages, setup -MAIN_REQUIREMENTS = [ - "airbyte-cdk", -] +MAIN_REQUIREMENTS = ["airbyte-cdk", "pendulum", "requests"] TEST_REQUIREMENTS = [ "pytest~=6.1", diff --git a/airbyte-integrations/connectors/source-close-com/source_close_com/__init__.py b/airbyte-integrations/connectors/source-close-com/source_close_com/__init__.py index 41c5d9e0a425ab..dbf20b496938fb 100644 --- a/airbyte-integrations/connectors/source-close-com/source_close_com/__init__.py +++ b/airbyte-integrations/connectors/source-close-com/source_close_com/__init__.py @@ -21,6 +21,7 @@ # SOFTWARE. -from .source import SourceCloseCom +from .datetime_slicer import CustomDatetimeStreamSlicer +from .source_lc import SourceCloseCom -__all__ = ["SourceCloseCom"] +__all__ = ["SourceCloseCom", "CustomDatetimeStreamSlicer"] diff --git a/airbyte-integrations/connectors/source-close-com/source_close_com/close_com.yaml b/airbyte-integrations/connectors/source-close-com/source_close_com/close_com.yaml new file mode 100644 index 00000000000000..1f0495aea1fde0 --- /dev/null +++ b/airbyte-integrations/connectors/source-close-com/source_close_com/close_com.yaml @@ -0,0 +1,515 @@ +version: "0.1.0" + +definitions: + schema_loader: + type: JsonSchema + file_path: "./source_close_com/schemas/{{ options['name'] }}.json" + selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_pointer: [ "data" ] + requester: + url_base: "https://api.close.com/api/v1/" + http_method: "GET" + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + incremental_query_requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + query: "sort:updated date_updated > {{ stream_slice['start_time'] }} date_updated <= {{ stream_slice['end_time'] }}" + offset_paginator: + type: DefaultPaginator + url_base: "*ref(definitions.requester.url_base)" + page_size_option: + inject_into: "request_parameter" + field_name: "_limit" + page_token_option: + inject_into: "request_parameter" + field_name: "_skip" + pagination_strategy: + type: OffsetIncrement + page_size: "{{ options['items_per_page'] }}" + cursor_paginator: + type: DefaultPaginator + url_base: "*ref(definitions.requester.url_base)" + page_token_option: + inject_into: "request_parameter" + field_name: "_cursor" + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response['cursor_next'] }}" + page_size: -1 + page_size_option: + inject_into: request_parameter + field_name: "" + stream_query_slicer: +# type: DatetimeStreamSlicer + class_name: "source_close_com.CustomDatetimeStreamSlicer" + start_datetime: + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + end_datetime: + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S.%f%z') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" # ISO8601 + step: "365d" + cursor_field: "date_updated" + datetime_format: "%Y-%m-%d" + + stream_slicer__cursor_date_created: +# type: DatetimeStreamSlicer + class_name: "source_close_com.CustomDatetimeStreamSlicer" + start_datetime: + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + end_datetime: + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S.%f%z') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" # ISO8601 + start_time_option: + field_name: "date_created__gt" + inject_into: "request_parameter" + end_time_option: + field_name: "date_created__lte" + inject_into: "request_parameter" + step: "365d" + cursor_field: "date_created" + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" + + stream_slicer__cursor_date_updated: +# type: DatetimeStreamSlicer + class_name: "source_close_com.CustomDatetimeStreamSlicer" + start_datetime: + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + end_datetime: + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S.%f%z') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" # ISO8601 + start_time_option: + field_name: "date_updated__gt" + inject_into: "request_parameter" + end_time_option: + field_name: "date_updated__lte" + inject_into: "request_parameter" + step: "365d" + cursor_field: "date_updated" + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" + retriever: + record_selector: + $ref: "*ref(definitions.selector)" + requester: + $ref: "*ref(definitions.requester)" + paginator: + type: NoPagination + + base_stream: + retriever: + $ref: "*ref(definitions.retriever)" + schema_loader: + $ref: "*ref(definitions.schema_loader)" + primary_key: "id" + full_refresh_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + paginator: + $ref: "*ref(definitions.offset_paginator)" + full_refresh_cursor_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + paginator: + $ref: "*ref(definitions.cursor_paginator)" + incremental_stream: + $ref: "*ref(definitions.full_refresh_stream)" + retriever: + $ref: "*ref(definitions.full_refresh_stream.retriever)" + stream_slicer: + $ref: "*ref(definitions.stream_slicer__cursor_date_updated)" + requester: + $ref: "*ref(definitions.requester)" + stream_cursor_field: "date_updated" + incremental_cursor_based_stream: + $ref: "*ref(definitions.incremental_stream)" + retriever: + $ref: "*ref(definitions.incremental_stream.retriever)" + paginator: + $ref: "*ref(definitions.cursor_paginator)" + + activities_base_stream: + $ref: "*ref(definitions.incremental_stream)" + retriever: + $ref: "*ref(definitions.incremental_stream.retriever)" + stream_slicer: + $ref: "*ref(definitions.stream_slicer__cursor_date_created)" + stream_cursor_field: "date_created" + $options: + items_per_page: 100 + + tasks_base_stream: + $ref: "*ref(definitions.incremental_stream)" + retriever: + $ref: "*ref(definitions.incremental_stream.retriever)" + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + _type: "{{ options['task_type'] }}" + _order_by: "date_created" + stream_slicer: + $ref: "*ref(definitions.stream_slicer__cursor_date_created)" + $options: + path: "task" + items_per_page: 1000 + stream_cursor_field: "date_created" + + connected_accounts_base_stream: + $ref: "*ref(definitions.full_refresh_stream)" + retriever: + $ref: "*ref(definitions.full_refresh_stream.retriever)" + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + _type: "{{ options['connected_accounts_type'] }}" + $options: + path: "connected_account" + items_per_page: 100 + + created_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "created_activities" + path: "activity/created" + note_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "note_activities" + path: "activity/note" + email_thread_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "email_thread_activities" + path: "activity/emailthread" + email_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "email_activities" + path: "activity/email" + sms_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "sms_activities" + path: "activity/sms" + call_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "call_activities" + path: "activity/call" + meeting_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "meeting_activities" + path: "activity/meeting" + lead_status_change_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "lead_status_change_activities" + path: "activity/status_change/lead" + opportunity_status_change_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "opportunity_status_change_activities" + path: "activity/status_change/opportunity" + task_completed_activities_stream: + $ref: "*ref(definitions.activities_base_stream)" + $options: + $ref: "*ref(definitions.activities_base_stream.$options)" + name: "task_completed_activities" + path: "activity/task_completed" + + lead_custom_fields_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "lead_custom_fields" + path: "custom_field/lead" + items_per_page: 1000 + contact_custom_fields_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "contact_custom_fields" + path: "custom_field/contact" + items_per_page: 1000 + opportunity_custom_fields_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "opportunity_custom_fields" + path: "custom_field/opportunity" + items_per_page: 1000 + activity_custom_fields_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "activity_custom_fields" + path: "custom_field/activity" + items_per_page: 1000 + users_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "users" + path: "user" + items_per_page: 1000 + contacts_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "contacts" + path: "contact" + items_per_page: 100 + roles_stream: + $ref: "*ref(definitions.full_refresh_cursor_stream)" + $options: + name: "roles" + path: "role" + lead_statuses_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "lead_statuses" + path: "status/lead" + items_per_page: 100 + opportunity_statuses_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "opportunity_statuses" + path: "status/opportunity" + items_per_page: 100 + pipelines_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "pipelines" + path: "pipeline" + email_templates_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "email_templates" + path: "email_template" + items_per_page: 100 + + events_stream: + $ref: "*ref(definitions.incremental_cursor_based_stream)" + $options: + name: "events" + path: "event" + items_per_page: 50 + leads_steam: + $ref: "*ref(definitions.incremental_stream)" + retriever: + $ref: "*ref(definitions.incremental_stream.retriever)" + stream_slicer: + $ref: "*ref(definitions.stream_query_slicer)" + requester: + $ref: "*ref(definitions.incremental_query_requester)" + $options: + name: "leads" + path: "lead" + items_per_page: 200 + opportunities_stream: + $ref: "*ref(definitions.incremental_stream)" + retriever: + $ref: "*ref(definitions.incremental_stream.retriever)" + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + _order_by: "date_updated" + $options: + name: "opportunities" + path: "opportunity" + items_per_page: 250 + + lead_tasks_stream: + $ref: "*ref(definitions.tasks_base_stream)" + $options: + $ref: "*ref(definitions.tasks_base_stream.$options)" + name: "lead_tasks" + task_type: "lead" + incoming_email_tasks_stream: + $ref: "*ref(definitions.tasks_base_stream)" + $options: + $ref: "*ref(definitions.tasks_base_stream.$options)" + name: "incoming_email_tasks" + task_type: "incoming_email" + email_followup_tasks_stream: + $ref: "*ref(definitions.tasks_base_stream)" + $options: + $ref: "*ref(definitions.tasks_base_stream.$options)" + name: "email_followup_tasks" + task_type: "email_followup" + missed_call_tasks_stream: + $ref: "*ref(definitions.tasks_base_stream)" + $options: + $ref: "*ref(definitions.tasks_base_stream.$options)" + name: "missed_call_tasks" + task_type: "missed_call" + answered_detached_call_tasks_stream: + $ref: "*ref(definitions.tasks_base_stream)" + $options: + $ref: "*ref(definitions.tasks_base_stream.$options)" + name: "answered_detached_call_tasks" + task_type: "answered_detached_call" + voicemail_tasks_stream: + $ref: "*ref(definitions.tasks_base_stream)" + $options: + $ref: "*ref(definitions.tasks_base_stream.$options)" + name: "voicemail_tasks" + task_type: "voicemail" + opportunity_due_tasks_stream: + $ref: "*ref(definitions.tasks_base_stream)" + $options: + $ref: "*ref(definitions.tasks_base_stream.$options)" + name: "opportunity_due_tasks" + task_type: "opportunity_due" + incoming_sms_tasks_stream: + $ref: "*ref(definitions.tasks_base_stream)" + $options: + $ref: "*ref(definitions.tasks_base_stream.$options)" + name: "incoming_sms_tasks" + task_type: "incoming_sms" + + google_connected_accounts_stream: + $ref: "*ref(definitions.connected_accounts_base_stream)" + $options: + $ref: "*ref(definitions.connected_accounts_base_stream.$options)" + name: "google_connected_accounts" + connected_accounts_type: "google" + custom_email_connected_accounts_stream: + $ref: "*ref(definitions.connected_accounts_base_stream)" + $options: + $ref: "*ref(definitions.connected_accounts_base_stream.$options)" + name: "custom_email_connected_accounts" + connected_accounts_type: "custom_email" + zoom_connected_accounts_stream: + $ref: "*ref(definitions.connected_accounts_base_stream)" + $options: + $ref: "*ref(definitions.connected_accounts_base_stream.$options)" + name: "zoom_connected_accounts" + connected_accounts_type: "zoom" + + send_as_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "send_as" + path: "send_as" + email_sequences_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "email_sequences" + path: "sequence" + items_per_page: 1000 + dialer_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "dialer" + path: "dialer" + items_per_page: 100 + smart_views_stream: + $ref: "*ref(definitions.full_refresh_cursor_stream)" + $options: + name: "smart_views" + path: "saved_search" +# items_per_page: 600 + email_bulk_actions_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "email_bulk_actions" + path: "bulk_action/email" + items_per_page: 100 + sequence_subscription_bulk_actions_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "sequence_subscription_bulk_actions" + path: "bulk_action/sequence_subscription" + items_per_page: 100 + delete_bulk_actions_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "delete_bulk_actions" + path: "bulk_action/delete" + items_per_page: 100 + edit_bulk_actions_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "edit_bulk_actions" + path: "bulk_action/edit" + items_per_page: 100 + integration_links_stream: + $ref: "*ref(definitions.full_refresh_stream)" + $options: + name: "integration_links" + path: "integration_link" + items_per_page: 100 + custom_activities_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "custom_activities" + path: "custom_activity" + +streams: + - "*ref(definitions.created_activities_stream)" + - "*ref(definitions.note_activities_stream)" + - "*ref(definitions.email_thread_activities_stream)" + - "*ref(definitions.email_activities_stream)" + - "*ref(definitions.sms_activities_stream)" + - "*ref(definitions.call_activities_stream)" + - "*ref(definitions.meeting_activities_stream)" + - "*ref(definitions.lead_status_change_activities_stream)" + - "*ref(definitions.opportunity_status_change_activities_stream)" + - "*ref(definitions.task_completed_activities_stream)" + - "*ref(definitions.lead_custom_fields_stream)" + - "*ref(definitions.contact_custom_fields_stream)" + - "*ref(definitions.opportunity_custom_fields_stream)" + - "*ref(definitions.activity_custom_fields_stream)" + - "*ref(definitions.users_stream)" + - "*ref(definitions.contacts_stream)" + - "*ref(definitions.roles_stream)" + - "*ref(definitions.lead_statuses_stream)" + - "*ref(definitions.opportunity_statuses_stream)" + - "*ref(definitions.pipelines_stream)" + - "*ref(definitions.email_templates_stream)" + - "*ref(definitions.events_stream)" + - "*ref(definitions.leads_steam)" + - "*ref(definitions.opportunities_stream)" + - "*ref(definitions.lead_tasks_stream)" + - "*ref(definitions.incoming_email_tasks_stream)" + - "*ref(definitions.email_followup_tasks_stream)" + - "*ref(definitions.missed_call_tasks_stream)" + - "*ref(definitions.answered_detached_call_tasks_stream)" + - "*ref(definitions.voicemail_tasks_stream)" + - "*ref(definitions.opportunity_due_tasks_stream)" + - "*ref(definitions.incoming_sms_tasks_stream)" + - "*ref(definitions.google_connected_accounts_stream)" + - "*ref(definitions.custom_email_connected_accounts_stream)" + - "*ref(definitions.zoom_connected_accounts_stream)" + - "*ref(definitions.send_as_stream)" + - "*ref(definitions.email_sequences_stream)" + - "*ref(definitions.dialer_stream)" + - "*ref(definitions.smart_views_stream)" + - "*ref(definitions.email_bulk_actions_stream)" + - "*ref(definitions.sequence_subscription_bulk_actions_stream)" + - "*ref(definitions.delete_bulk_actions_stream)" + - "*ref(definitions.edit_bulk_actions_stream)" + - "*ref(definitions.integration_links_stream)" + - "*ref(definitions.custom_activities_stream)" + +check: + stream_names: + - "users" diff --git a/airbyte-integrations/connectors/source-close-com/source_close_com/datetime_slicer.py b/airbyte-integrations/connectors/source-close-com/source_close_com/datetime_slicer.py new file mode 100644 index 00000000000000..55e4e0516d64e4 --- /dev/null +++ b/airbyte-integrations/connectors/source-close-com/source_close_com/datetime_slicer.py @@ -0,0 +1,34 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import datetime +from dataclasses import dataclass + +import pendulum +from airbyte_cdk.sources.declarative.stream_slicers import DatetimeStreamSlicer + + +@dataclass +class CustomDatetimeStreamSlicer(DatetimeStreamSlicer): + """ + This customization helps us to avoid problems when we meet different datetime formats in a single stream. + For example if a stream "S" has a `date_created` field filled with "2021-01-01T00:00:00.000000+00:00" value in record 1, + but at the same time the value of the same field is "2021-01-01T00:00:00+00:00 in record 2, + then it is not enough to specify only one format in the `datetime_format` option. + """ + + def _format_datetime(self, dt: datetime.datetime) -> str: + return pendulum.datetime( + year=dt.year, + month=dt.month, + day=dt.day, + hour=dt.hour, + minute=dt.minute, + second=dt.second, + microsecond=dt.microsecond, + tz=dt.tzinfo or self._timezone, + ).to_iso8601_string() + + def parse_date(self, date: str) -> datetime.datetime: + return pendulum.parse(date, tz=self._timezone) diff --git a/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/custom_activities.json b/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/custom_activities.json index 5bb0ef1ec9be89..46983ba54199d8 100644 --- a/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/custom_activities.json +++ b/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/custom_activities.json @@ -1,6 +1,9 @@ { "type": ["null", "object"], "properties": { + "id": { + "type": ["null", "string"] + }, "api_create_only": { "type": ["null", "boolean"] }, diff --git a/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/custom_email_connected_accounts.json b/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/custom_email_connected_accounts.json index 9c3a3387d91e23..530cb58bddd6c0 100644 --- a/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/custom_email_connected_accounts.json +++ b/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/custom_email_connected_accounts.json @@ -20,7 +20,7 @@ "type": ["null", "string"] }, "imap": { - "type": ["null", "string"] + "type": ["null", "object"] } } } diff --git a/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/smart_views.json b/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/smart_views.json index 823e5aa5045046..0baaef11b96a40 100644 --- a/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/smart_views.json +++ b/airbyte-integrations/connectors/source-close-com/source_close_com/schemas/smart_views.json @@ -20,7 +20,7 @@ "type": ["null", "string"] }, "s_query": { - "type": ["null", "string"] + "type": ["null", "object"] }, "type": { "type": ["null", "string"] diff --git a/airbyte-integrations/connectors/source-close-com/source_close_com/source_lc.py b/airbyte-integrations/connectors/source-close-com/source_close_com/source_lc.py new file mode 100644 index 00000000000000..e35e47263acb82 --- /dev/null +++ b/airbyte-integrations/connectors/source-close-com/source_close_com/source_lc.py @@ -0,0 +1,18 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource + +""" +This file provides the necessary constructs to interpret a provided declarative YAML configuration file into +source connector. + +WARNING: Do not modify this file. +""" + + +# Declarative Source +class SourceCloseCom(YamlDeclarativeSource): + def __init__(self): + super().__init__(**{"path_to_yaml": "close_com.yaml"}) diff --git a/airbyte-integrations/connectors/source-close-com/source_close_com/spec.json b/airbyte-integrations/connectors/source-close-com/source_close_com/spec.json index ea67ed4f237e1a..efd6033d5d6d5f 100644 --- a/airbyte-integrations/connectors/source-close-com/source_close_com/spec.json +++ b/airbyte-integrations/connectors/source-close-com/source_close_com/spec.json @@ -5,7 +5,7 @@ "title": "Close.com Spec", "type": "object", "required": ["api_key"], - "additionalProperties": false, + "additionalProperties": true, "properties": { "api_key": { "type": "string", diff --git a/airbyte-integrations/connectors/source-close-com/unit_tests/unit_test.py b/airbyte-integrations/connectors/source-close-com/unit_tests/tests.py similarity index 74% rename from airbyte-integrations/connectors/source-close-com/unit_tests/unit_test.py rename to airbyte-integrations/connectors/source-close-com/unit_tests/tests.py index dddaea0060fa13..51eca602da1df6 100644 --- a/airbyte-integrations/connectors/source-close-com/unit_tests/unit_test.py +++ b/airbyte-integrations/connectors/source-close-com/unit_tests/tests.py @@ -3,5 +3,5 @@ # -def test_example_method(): +def test(): assert True diff --git a/docs/integrations/sources/close-com.md b/docs/integrations/sources/close-com.md index 41a2cb8300ce51..2fe293013cbf21 100644 --- a/docs/integrations/sources/close-com.md +++ b/docs/integrations/sources/close-com.md @@ -1,10 +1,27 @@ # Close.com -## Overview +## Prerequisites + +* Close.com Account +* Close.com API Key + +Visit the [Close.com API Keys page](https://app.close.com/settings/api/) in the Close.com dashboard to access the secret key for your account. Secret key will be prefixed with `api_`. +See [this guide](https://help.close.com/docs/api-keys) if you need to create a new one. + +We recommend creating a restricted key specifically for Airbyte access. This will allow you to control which resources Airbyte should be able to access. For ease of use, we recommend using read permissions for all resources and configuring which resource to replicate in the Airbyte UI. + +## Setup guide + +1. [Log into your Airbyte Cloud](https://cloud.airbyte.io/workspaces) account. +2. In the left navigation bar, click **Sources**. In the top-right corner, click **+new source**. +3. On the Set up the source page, enter the name for the Close.com connector and select **Close.com** from the Source type dropdown. +4. Fill in the API Key and Start date fields and click **Set up source**. + +## Supported sync modes The Close.com source supports both Full Refresh and Incremental syncs. You can choose if this connector will copy only the new or updated data, or all rows in the tables and columns you set up for replication, every time a sync is run. -### Output schema +## Supported Streams This Source is capable of syncing the following core Streams: @@ -56,39 +73,22 @@ This Source is capable of syncing the following core Streams: ### Notes -Leads, Events Incremental streams use `date_updated` field. All other Incremental streams use `date_created` field. - -### Data type mapping +Leads, Events Incremental streams use `date_updated` field as a cursor. All other Incremental streams use `date_created` field for the same purpose. -The [Close.com API](https://developer.close.com/) uses the same [JSONSchema](https://json-schema.org/understanding-json-schema/reference/index.html) types that Airbyte uses internally \(`string`, `date-time`, `object`, `array`, `boolean`, `integer`, and `number`\), so no type conversions happen as part of this source. +`SendAs` stream requires payment. -### Features +### Data type mapping -| Feature | Supported? | -| :--- | :--- | -| Full Refresh Sync | Yes | -| Incremental - Append Sync | Yes | +The [Close.com API](https://developer.close.com/) uses the same [JSONSchema](https://json-schema.org/understanding-json-schema/reference/index.html) types that Airbyte uses internally (`string`, `date-time`, `object`, `array`, `boolean`, `integer`, and `number`), so no type conversions happen as part of this source. ### Performance considerations The Close.com Connector has rate limit. There are 60 RPS for Organizations. You can find detailed info [here](https://developer.close.com/#ratelimits). -## Getting started - -### Requirements - -* Close.com Account -* Close.com API Key - -### Setup guide - -Visit the [Close.com API Keys page](https://app.close.com/settings/api/) in the Close.com dashboard to access the secret key for your account. Secret key will be prefixed with `api_`. - -We recommend creating a restricted key specifically for Airbyte access. This will allow you to control which resources Airbyte should be able to access. For ease of use, we recommend using read permissions for all resources and configuring which resource to replicate in the Airbyte UI. - ## Changelog | Version | Date | Pull Request | Subject | | :--- | :--- | :--- | :--- | +| 0.2.0 | 2022-11-04 | [18968](https://github.com/airbytehq/airbyte/pull/18968) | Migrate to Low-Code | | 0.1.0 | 2021-08-10 | [5366](https://github.com/airbytehq/airbyte/pull/5366) | Initial release of Close.com connector for Airbyte |