From 92c1a239c35ddd4a4a23ba0a53084acd04a50e34 Mon Sep 17 00:00:00 2001 From: Serhii Lazebnyi <53845333+lazebnyi@users.noreply.github.com> Date: Tue, 31 Jan 2023 10:14:19 +0100 Subject: [PATCH] Source Marketo: set high test strictness level (#21947) * #19055 source marketo: set high test strictness level * #19055 source marketo: increase incremental test timeout * #19055 source Marketo: fix stream schemas * #19055 source marketoL fix unit test * Updated expected records * Updated expected records * auto-bump connector version --------- Co-authored-by: Denys Davydov Co-authored-by: Octavia Squidington III --- .../resources/seed/source_definitions.yaml | 2 +- .../src/main/resources/seed/source_specs.yaml | 2 +- .../connectors/source-marketo/Dockerfile | 2 +- .../source-marketo/acceptance-test-config.yml | 93 ++++++-- .../integration_tests/catalog.json | 35 --- .../integration_tests/configured_catalog.json | 65 ++++-- .../integration_tests/expected_records.jsonl | 220 +++++++++++++----- .../incremental_catalog.json | 56 +++-- .../source-marketo/source_marketo/source.py | 4 +- .../source-marketo/unit_tests/test_source.py | 2 +- docs/integrations/sources/marketo.md | 1 + 11 files changed, 315 insertions(+), 167 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-marketo/integration_tests/catalog.json 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 ede4b4b47fe9..85a570fd1444 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -1023,7 +1023,7 @@ - name: Marketo sourceDefinitionId: 9e0556f4-69df-4522-a3fb-03264d36b348 dockerRepository: airbyte/source-marketo - dockerImageTag: 0.1.11 + dockerImageTag: 1.0.0 documentationUrl: https://docs.airbyte.com/integrations/sources/marketo icon: marketo.svg sourceType: api 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 eaa73b6392c3..6f229733e404 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -8141,7 +8141,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-marketo:0.1.11" +- dockerImage: "airbyte/source-marketo:1.0.0" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/marketo" connectionSpecification: diff --git a/airbyte-integrations/connectors/source-marketo/Dockerfile b/airbyte-integrations/connectors/source-marketo/Dockerfile index 2535bd7ba33d..68075cbfc4af 100644 --- a/airbyte-integrations/connectors/source-marketo/Dockerfile +++ b/airbyte-integrations/connectors/source-marketo/Dockerfile @@ -34,5 +34,5 @@ COPY source_marketo ./source_marketo ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.11 +LABEL io.airbyte.version=1.0.0 LABEL io.airbyte.name=airbyte/source-marketo diff --git a/airbyte-integrations/connectors/source-marketo/acceptance-test-config.yml b/airbyte-integrations/connectors/source-marketo/acceptance-test-config.yml index 709d61f6b3c9..3f680f662222 100644 --- a/airbyte-integrations/connectors/source-marketo/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-marketo/acceptance-test-config.yml @@ -1,29 +1,82 @@ # 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-marketo:dev -tests: +test_strictness_level: high +acceptance_tests: spec: - - spec_path: "source_marketo/spec.json" + tests: + - spec_path: "source_marketo/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" basic_read: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: ["lists", "campaigns"] - timeout_seconds: 3600 - expect_records: - path: "integration_tests/expected_records.jsonl" + tests: + - config_path: "secrets/config.json" + expect_records: + path: "integration_tests/expected_records.jsonl" + empty_streams: + - name: "activities_update_opportunity" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_change_segment" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_document_interacted_with" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_call_webhook" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_push_leadto_marketo" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_change_revenue_stage" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_dialogue_goal_reached" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_removefrom_opportunity" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_received_forwardto_friend_email" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_open_sales_email" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_share_content" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_sales_email_bounced" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_dialogue_engaged" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_dialogue_appointment_scheduled" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_click_sales_email" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_sent_forwardto_friend_email" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_click_link" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_send_sales_email" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_change_revenue_stage_manually" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_receive_sales_email" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_replyto_sales_email" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_addto_opportunity" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + - name: "activities_open_email" + bypass_reason: "Marketo does not provide a way to populate this stream without outside interaction" + # 52 streams, most of them use BULK API therefore it takes much time to run a sync + timeout_seconds: 9000 incremental: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/incremental_catalog.json" - future_state_path: "integration_tests/abnormal_state.json" - timeout_seconds: 3600 + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/incremental_catalog.json" + future_state: + future_state_path: "integration_tests/abnormal_state.json" + timeout_seconds: 3600 full_refresh: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - timeout_seconds: 3600 + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-marketo/integration_tests/catalog.json b/airbyte-integrations/connectors/source-marketo/integration_tests/catalog.json deleted file mode 100644 index faf18a17a46b..000000000000 --- a/airbyte-integrations/connectors/source-marketo/integration_tests/catalog.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "programs", - "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": [] - }, - "sync_mode": "incremental", - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "campaigns", - "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": [] - }, - "sync_mode": "incremental", - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "activity_types", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"] - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "append" - } - ] -} diff --git a/airbyte-integrations/connectors/source-marketo/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-marketo/integration_tests/configured_catalog.json index 7f9eb023b6aa..400458746385 100644 --- a/airbyte-integrations/connectors/source-marketo/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-marketo/integration_tests/configured_catalog.json @@ -4,65 +4,84 @@ "stream": { "name": "programs", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh", "incremental"], "source_defined_cursor": true, - "default_cursor_field": [] + "default_cursor_field": ["updatedAt"], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["updatedAt"], + "primary_key": [["id"]] }, { "stream": { "name": "campaigns", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh", "incremental"], "source_defined_cursor": true, - "default_cursor_field": [] + "default_cursor_field": ["createdAt"], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["createdAt"], + "primary_key": [["id"]] }, { "stream": { "name": "lists", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh", "incremental"], "source_defined_cursor": true, - "default_cursor_field": [] + "default_cursor_field": ["createdAt"], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["createdAt"], + "primary_key": [["id"]] }, { "stream": { "name": "leads", "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": [] + "supported_sync_modes": ["full_refresh", "incremental"], + "default_cursor_field": ["updatedAt"], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["updatedAt"], + "primary_key": [["id"]] }, { "stream": { "name": "activity_types", "json_schema": {}, - "supported_sync_modes": ["full_refresh"] + "supported_sync_modes": ["full_refresh"], + "source_defined_cursor": false, + "default_cursor_field": null, + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "append" + "destination_sync_mode": "append", + "cursor_field": null, + "primary_key": [["id"]] }, { "stream": { "name": "activities_visit_webpage", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh", "incremental"], "source_defined_cursor": true, - "default_cursor_field": [] + "default_cursor_field": ["activityDate"], + "source_defined_primary_key": [["marketoGUID"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["activityDate"], + "primary_key": [["marketoGUID"]] } ] } diff --git a/airbyte-integrations/connectors/source-marketo/integration_tests/expected_records.jsonl b/airbyte-integrations/connectors/source-marketo/integration_tests/expected_records.jsonl index 8dad84fbc48b..df7e97bc0de8 100644 --- a/airbyte-integrations/connectors/source-marketo/integration_tests/expected_records.jsonl +++ b/airbyte-integrations/connectors/source-marketo/integration_tests/expected_records.jsonl @@ -1,63 +1,157 @@ -{"stream": "programs", "data": {"id": 1003, "name": "API Test Program", "description": "Sample API Program", "createdAt": "2021-01-18T13:55:44Z", "updatedAt": "2022-06-21T06:54:59Z", "url": "https://app-sj32.marketo.com/#PG1003A1", "type": "Default", "channel": "Email Blast", "folder": {"type": "Folder", "value": 45, "folderName": "Active Marketing Programs"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1661177167720} -{"stream": "programs", "data": {"id": 1018, "name": "Jean Lafleur", "description": "", "createdAt": "2021-09-08T12:49:49Z", "updatedAt": "2022-06-21T06:53:28Z", "url": "https://app-sj32.marketo.com/#PG1018A1", "type": "Default", "channel": "Online Advertising", "folder": {"type": "Folder", "value": 52, "folderName": "Web Forms"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1661177167723} -{"stream": "programs", "data": {"id": 1019, "name": "Test", "description": "", "createdAt": "2021-09-08T12:59:25Z", "updatedAt": "2022-06-21T06:53:45Z", "url": "https://app-sj32.marketo.com/#PG1019A1", "type": "Default", "channel": "List Import", "folder": {"type": "Folder", "value": 52, "folderName": "Web Forms"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1661177167724} -{"stream": "programs", "data": {"id": 1020, "name": "TEST1", "description": "", "createdAt": "2021-09-08T13:21:41Z", "updatedAt": "2022-06-21T06:54:03Z", "url": "https://app-sj32.marketo.com/#PG1020A1", "type": "Default", "channel": "Operational", "folder": {"type": "Folder", "value": 52, "folderName": "Web Forms"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1661177167725} -{"stream": "programs", "data": {"id": 1021, "name": "TEST_23", "description": "This is for Test", "createdAt": "2021-09-09T09:00:21Z", "updatedAt": "2022-06-21T06:54:16Z", "url": "https://app-sj32.marketo.com/#PG1021A1", "type": "Default", "channel": "Web Content", "folder": {"type": "Folder", "value": 52, "folderName": "Web Forms"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1661177167725} -{"stream": "programs", "data": {"id": 1022, "name": "Test_Demo1", "description": "bla bla", "createdAt": "2021-09-09T14:40:14Z", "updatedAt": "2022-06-21T06:54:29Z", "url": "https://app-sj32.marketo.com/#PG1022A1", "type": "Default", "channel": "Web Request", "folder": {"type": "Folder", "value": 52, "folderName": "Web Forms"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1661177167726} -{"stream": "leads", "data": {"company": "Airbyte", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 876, "mktoName": "Expecto Patronum", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Expecto", "middleName": null, "lastName": "Patronum", "email": "expecto@patronum.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "84", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": null, "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2022-06-21T07:49:25Z", "updatedAt": "2022-06-21T07:50:05Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "876", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "876", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1661177364549} -{"stream": "leads", "data": {"company": "FedEx", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 877, "mktoName": "Frodo Baggins", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Frodo", "middleName": null, "lastName": "Baggins", "email": "frodo@baggins.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "85", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": null, "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2022-06-21T08:30:55Z", "updatedAt": "2022-06-21T08:30:55Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "877", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "877", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1661177364566} -{"stream": "leads", "data": {"company": "PizzaHouse", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 878, "mktoName": "Peter Petegrew", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Peter", "middleName": null, "lastName": "Petegrew", "email": "peter@petegrew.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "86", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": null, "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2022-06-21T08:31:42Z", "updatedAt": "2022-06-21T08:31:42Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "878", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "878", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1661177364568} -{"stream": "leads", "data": {"company": "SportLife", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 879, "mktoName": "Dudley Dursley", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Dudley", "middleName": null, "lastName": "Dursley", "email": "dudley@dursley.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "87", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": null, "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2022-06-21T08:32:37Z", "updatedAt": "2022-06-21T08:32:37Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "879", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "879", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1661177364570} -{"stream": "leads", "data": {"company": "KeenEye", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 880, "mktoName": "Alastor Moody", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Alastor", "middleName": null, "lastName": "Moody", "email": "alastor@moody.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "88", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": null, "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2022-06-21T08:34:25Z", "updatedAt": "2022-06-21T08:34:25Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "880", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "880", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1661177364572} -{"stream": "activity_types", "data": {"id": 1, "name": "Visit Webpage", "description": "User visits a web page", "primaryAttribute": {"name": "Webpage ID", "dataType": "integer"}, "attributes": [{"name": "Client IP Address", "dataType": "string"}, {"name": "Query Parameters", "dataType": "string"}, {"name": "Referrer URL", "dataType": "string"}, {"name": "Search Engine", "dataType": "string"}, {"name": "Search Query", "dataType": "string"}, {"name": "User Agent", "dataType": "string"}, {"name": "Webpage URL", "dataType": "string"}]}, "emitted_at": 1661177367593} -{"stream": "activity_types", "data": {"id": 2, "name": "Fill Out Form", "description": "User fills out and submits a form on web page", "primaryAttribute": {"name": "Webform ID", "dataType": "integer"}, "attributes": [{"name": "Client IP Address", "dataType": "string"}, {"name": "Form Fields", "dataType": "text"}, {"name": "Query Parameters", "dataType": "string"}, {"name": "Referrer URL", "dataType": "string"}, {"name": "User Agent", "dataType": "string"}, {"name": "Webpage ID", "dataType": "integer"}]}, "emitted_at": 1661177367603} -{"stream": "activity_types", "data": {"id": 3, "name": "Click Link", "description": "User clicks link on a page", "primaryAttribute": {"name": "Link ID", "dataType": "integer"}, "attributes": [{"name": "Client IP Address", "dataType": "string"}, {"name": "Query Parameters", "dataType": "string"}, {"name": "Referrer URL", "dataType": "string"}, {"name": "User Agent", "dataType": "string"}, {"name": "Webpage ID", "dataType": "integer"}]}, "emitted_at": 1661177367603} -{"stream": "activity_types", "data": {"id": 6, "name": "Send Email", "description": "Send Marketo Email to a person", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Test Variant", "dataType": "integer"}]}, "emitted_at": 1661177367603} -{"stream": "activity_types", "data": {"id": 7, "name": "Email Delivered", "description": "Marketo Email is delivered to a lead/contact", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Test Variant", "dataType": "integer"}]}, "emitted_at": 1661177367603} -{"stream": "activity_types", "data": {"id": 8, "name": "Email Bounced", "description": "Marketo Email is bounced for a lead", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Category", "dataType": "string"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Details", "dataType": "string"}, {"name": "Email", "dataType": "string"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Subcategory", "dataType": "string"}, {"name": "Test Variant", "dataType": "integer"}]}, "emitted_at": 1661177367603} -{"stream": "activity_types", "data": {"id": 9, "name": "Unsubscribe Email", "description": "Person unsubscribed from Marketo Emails", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "Integer"}, {"name": "Client IP Address", "dataType": "string"}, {"name": "Form Fields", "dataType": "text"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Query Parameters", "dataType": "string"}, {"name": "Referrer URL", "dataType": "string"}, {"name": "Test Variant", "dataType": "integer"}, {"name": "User Agent", "dataType": "string"}, {"name": "Webform ID", "dataType": "integer"}, {"name": "Webpage ID", "dataType": "integer"}]}, "emitted_at": 1661177367604} -{"stream": "activity_types", "data": {"id": 10, "name": "Open Email", "description": "User opens Marketo Email", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Bot Activity Pattern", "dataType": "string"}, {"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Device", "dataType": "string"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Is Bot Activity", "dataType": "boolean"}, {"name": "Is Mobile Device", "dataType": "boolean"}, {"name": "Platform", "dataType": "string"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Test Variant", "dataType": "integer"}, {"name": "User Agent", "dataType": "string"}]}, "emitted_at": 1661177367604} -{"stream": "activity_types", "data": {"id": 11, "name": "Click Email", "description": "User clicks on a link in a Marketo Email", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Bot Activity Pattern", "dataType": "string"}, {"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Device", "dataType": "string"}, {"name": "Is Bot Activity", "dataType": "boolean"}, {"name": "Is Mobile Device", "dataType": "boolean"}, {"name": "Is Predictive", "dataType": "boolean"}, {"name": "Link", "dataType": "string"}, {"name": "Link ID", "dataType": "string"}, {"name": "Platform", "dataType": "string"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Test Variant", "dataType": "integer"}, {"name": "User Agent", "dataType": "string"}]}, "emitted_at": 1661177367604} -{"stream": "activity_types", "data": {"id": 12, "name": "New Lead", "description": "New person/record is added to the lead database", "attributes": [{"name": "Created Date", "dataType": "date"}, {"name": "Form Name", "dataType": "string"}, {"name": "Lead Source", "dataType": "string"}, {"name": "List Name", "dataType": "string"}, {"name": "SFDC Type", "dataType": "string"}, {"name": "Source Type", "dataType": "string"}, {"name": "API Method Name", "dataType": "string"}, {"name": "Modifying User", "dataType": "string"}, {"name": "Request Id", "dataType": "string"}]}, "emitted_at": 1661177367604} -{"stream": "activity_types", "data": {"id": 13, "name": "Change Data Value", "description": "Changed attribute value for a person/record", "primaryAttribute": {"name": "Attribute Name", "dataType": "integer"}, "attributes": [{"name": "New Value", "dataType": "string"}, {"name": "Old Value", "dataType": "string"}, {"name": "Reason", "dataType": "string"}, {"name": "Source", "dataType": "string"}, {"name": "API Method Name", "dataType": "string"}, {"name": "Modifying User", "dataType": "string"}, {"name": "Request Id", "dataType": "string"}]}, "emitted_at": 1661177367604} -{"stream": "activity_types", "data": {"id": 22, "name": "Change Score", "description": "Modify the value of a score field", "primaryAttribute": {"name": "Score Name", "dataType": "integer"}, "attributes": [{"name": "Change Value", "dataType": "string"}, {"name": "New Value", "dataType": "integer"}, {"name": "Old Value", "dataType": "integer"}, {"name": "Reason", "dataType": "string"}]}, "emitted_at": 1661177367604} -{"stream": "activity_types", "data": {"id": 24, "name": "Add to List", "description": "Add a person/record to a list", "primaryAttribute": {"name": "List ID", "dataType": "integer"}, "attributes": [{"name": "Source", "dataType": "string"}]}, "emitted_at": 1661177367605} -{"stream": "activity_types", "data": {"id": 25, "name": "Remove from List", "description": "Remove this lead from a list", "primaryAttribute": {"name": "List ID", "dataType": "integer"}, "attributes": [{"name": "Source", "dataType": "string"}]}, "emitted_at": 1661177367605} -{"stream": "activity_types", "data": {"id": 27, "name": "Email Bounced Soft", "description": "Campaign Email is bounced soft for a lead", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Category", "dataType": "string"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Details", "dataType": "string"}, {"name": "Email", "dataType": "string"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Subcategory", "dataType": "string"}, {"name": "Test Variant", "dataType": "integer"}]}, "emitted_at": 1661177367605} -{"stream": "activity_types", "data": {"id": 32, "name": "Merge Leads", "description": "Merge two or more leads into a single record", "primaryAttribute": {"name": "Lead ID", "dataType": "integer"}, "attributes": [{"name": "Merge IDs", "dataType": "array"}, {"name": "Master Updated", "dataType": "boolean"}, {"name": "Merged in Sales", "dataType": "boolean"}, {"name": "Merge Source", "dataType": "string"}, {"name": "API Method Name", "dataType": "string"}, {"name": "Modifying User", "dataType": "string"}, {"name": "Request Id", "dataType": "string"}]}, "emitted_at": 1661177367605} -{"stream": "activity_types", "data": {"id": 34, "name": "Add to Opportunity", "description": "Add to an Opportunity", "primaryAttribute": {"name": "Oppty ID", "dataType": "integer"}, "attributes": [{"name": "Is Primary", "dataType": "boolean"}, {"name": "Role", "dataType": "string"}]}, "emitted_at": 1661177367605} -{"stream": "activity_types", "data": {"id": 35, "name": "Remove from Opportunity", "description": "Remove from an Opportunity", "primaryAttribute": {"name": "Oppty ID", "dataType": "integer"}, "attributes": [{"name": "Is Primary", "dataType": "boolean"}, {"name": "Role", "dataType": "string"}]}, "emitted_at": 1661177367605} -{"stream": "activity_types", "data": {"id": 36, "name": "Update Opportunity", "description": "Update an Opportunity", "primaryAttribute": {"name": "Oppty ID", "dataType": "integer"}, "attributes": [{"name": "Attribute Name", "dataType": "string"}, {"name": "Data Value Changes", "dataType": "complex"}, {"name": "New Value", "dataType": "mixed"}, {"name": "Old Value", "dataType": "mixed"}]}, "emitted_at": 1661177367605} -{"stream": "activity_types", "data": {"id": 37, "name": "Delete Lead", "description": "Delete lead from Marketo database", "primaryAttribute": {"name": "Lead ID", "dataType": "integer"}, "attributes": [{"name": "Remove from CRM", "dataType": "boolean"}, {"name": "API Method Name", "dataType": "string"}, {"name": "Modifying User", "dataType": "string"}, {"name": "Request Id", "dataType": "string"}]}, "emitted_at": 1661177367606} -{"stream": "activity_types", "data": {"id": 38, "name": "Send Alert", "description": "Send alert Email about a lead", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Send To List", "dataType": "email_list"}, {"name": "Send To Owner", "dataType": "string"}, {"name": "Send To Smart List", "dataType": "string"}]}, "emitted_at": 1661177367606} -{"stream": "activity_types", "data": {"id": 39, "name": "Send Sales Email", "description": "Send Email using Sales View (Outlook Plugin)", "primaryAttribute": {"name": "Artifact ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Marketo Sales Person ID", "dataType": "integer"}, {"name": "Sales Campaign Name", "dataType": "string"}, {"name": "Sales Campaign URL", "dataType": "string"}, {"name": "Sales Email URL", "dataType": "string"}, {"name": "Sales Template Name", "dataType": "string"}, {"name": "Sales Template URL", "dataType": "string"}, {"name": "Sent by", "dataType": "string"}, {"name": "Source", "dataType": "string"}, {"name": "Template ID", "dataType": "integer"}]}, "emitted_at": 1661177367606} -{"stream": "activity_types", "data": {"id": 40, "name": "Open Sales Email", "description": "User opens a sales Email", "primaryAttribute": {"name": "Artifact ID", "dataType": "integer"}, "attributes": [{"name": "Bot Activity Pattern", "dataType": "string"}, {"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Is Bot Activity", "dataType": "boolean"}, {"name": "Marketo Sales Person ID", "dataType": "integer"}, {"name": "Sales Campaign Name", "dataType": "string"}, {"name": "Sales Campaign URL", "dataType": "string"}, {"name": "Sales Email URL", "dataType": "string"}, {"name": "Sales Template Name", "dataType": "string"}, {"name": "Sales Template URL", "dataType": "string"}, {"name": "Sent by", "dataType": "string"}, {"name": "Source", "dataType": "string"}, {"name": "Template ID", "dataType": "integer"}]}, "emitted_at": 1661177367606} -{"stream": "activity_types", "data": {"id": 41, "name": "Click Sales Email", "description": "User clicks on a link in a sales Email", "primaryAttribute": {"name": "Artifact ID", "dataType": "integer"}, "attributes": [{"name": "Bot Activity Pattern", "dataType": "string"}, {"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Is Bot Activity", "dataType": "boolean"}, {"name": "Is Predictive", "dataType": "boolean"}, {"name": "Link", "dataType": "string"}, {"name": "Marketo Sales Person ID", "dataType": "integer"}, {"name": "Sales Campaign Name", "dataType": "string"}, {"name": "Sales Campaign URL", "dataType": "string"}, {"name": "Sales Email URL", "dataType": "string"}, {"name": "Sales Template Name", "dataType": "string"}, {"name": "Sales Template URL", "dataType": "string"}, {"name": "Sent by", "dataType": "string"}, {"name": "Source", "dataType": "string"}, {"name": "Template ID", "dataType": "integer"}]}, "emitted_at": 1661177367606} -{"stream": "activity_types", "data": {"id": 45, "name": "Receive Sales Email", "description": "Receive Email using Sales View (Outlook Plugin)", "primaryAttribute": {"name": "Artifact ID", "dataType": "integer"}, "attributes": [{"name": "Received by", "dataType": "string"}, {"name": "Source", "dataType": "string"}]}, "emitted_at": 1661177367607} -{"stream": "activity_types", "data": {"id": 47, "name": "Request Campaign", "description": "Campaign membership is requested for lead", "primaryAttribute": {"name": "Campaign ID", "dataType": "integer"}, "attributes": [{"name": "Source", "dataType": "enum"}]}, "emitted_at": 1661177367607} -{"stream": "activity_types", "data": {"id": 48, "name": "Sales Email Bounced", "description": "Sales Email bounced", "primaryAttribute": {"name": "Artifact ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Category", "dataType": "string"}, {"name": "Details", "dataType": "string"}, {"name": "Email", "dataType": "string"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Marketo Sales Person ID", "dataType": "integer"}, {"name": "Sent by", "dataType": "string"}, {"name": "Source", "dataType": "string"}, {"name": "Subcategory", "dataType": "string"}, {"name": "Template ID", "dataType": "integer"}]}, "emitted_at": 1661177367607} -{"stream": "activity_types", "data": {"id": 100, "name": "Change Lead Partition", "description": "Lead partition is changed for a lead", "primaryAttribute": {"name": "New Partition ID", "dataType": "integer"}, "attributes": [{"name": "Old Partition ID", "dataType": "integer"}, {"name": "Reason", "dataType": "string"}]}, "emitted_at": 1661177367607} -{"stream": "activity_types", "data": {"id": 101, "name": "Change Revenue Stage", "description": "Modify the value of a revenue stage field", "primaryAttribute": {"name": "Model ID", "dataType": "integer"}, "attributes": [{"name": "New Stage ID", "dataType": "integer"}, {"name": "Old Stage ID", "dataType": "integer"}, {"name": "Reason", "dataType": "string"}, {"name": "SLA Expiration", "dataType": "datetime"}, {"name": "New Stage", "dataType": "string"}, {"name": "Old Stage", "dataType": "string"}]}, "emitted_at": 1661177367607} -{"stream": "activity_types", "data": {"id": 102, "name": "Change Revenue Stage Manually", "description": "Revenue stage is changed manually (e.g. Lead Database or Salesforce)"}, "emitted_at": 1661177367607} -{"stream": "activity_types", "data": {"id": 104, "name": "Change Status in Progression", "description": "Change a Status in an program progression", "primaryAttribute": {"name": "Program ID", "dataType": "integer"}, "attributes": [{"name": "Acquired By", "dataType": "boolean"}, {"name": "New Status ID", "dataType": "integer"}, {"name": "Old Status ID", "dataType": "integer"}, {"name": "Program Member ID", "dataType": "integer"}, {"name": "Reached Success Date", "dataType": "datetime"}, {"name": "Reason", "dataType": "string"}, {"name": "Registration Code", "dataType": "string"}, {"name": "Status Reason", "dataType": "string"}, {"name": "Success", "dataType": "boolean"}, {"name": "Webinar URL", "dataType": "string"}, {"name": "New Status", "dataType": "string"}, {"name": "Old Status", "dataType": "string"}]}, "emitted_at": 1661177367608} -{"stream": "activity_types", "data": {"id": 108, "name": "Change Segment", "description": "Change segment (within a segmentation) for a lead", "primaryAttribute": {"name": "Segmentation ID", "dataType": "integer"}, "attributes": [{"name": "New Segment ID", "dataType": "integer"}]}, "emitted_at": 1661177367608} -{"stream": "activity_types", "data": {"id": 110, "name": "Call Webhook", "description": "Call a Webhook", "primaryAttribute": {"name": "Webhook", "dataType": "integer"}, "attributes": [{"name": "Error Type", "dataType": "integer"}, {"name": "Response", "dataType": "string"}]}, "emitted_at": 1661177367608} -{"stream": "activity_types", "data": {"id": 111, "name": "Sent Forward to Friend Email", "description": "User Forwards Email to a person/record", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Choice Number", "dataType": "integer"}, {"name": "Lead ID", "dataType": "string"}, {"name": "Step ID", "dataType": "integer"}]}, "emitted_at": 1661177367608} -{"stream": "activity_types", "data": {"id": 112, "name": "Received Forward to Friend Email", "description": "User receives forwarded Email from friend", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Choice Number", "dataType": "integer"}, {"name": "Lead ID", "dataType": "string"}, {"name": "Step ID", "dataType": "integer"}]}, "emitted_at": 1661177367608} -{"stream": "activity_types", "data": {"id": 113, "name": "Add to Nurture", "description": "Add a lead to a nurture program", "primaryAttribute": {"name": "Program ID", "dataType": "integer"}, "attributes": [{"name": "Track ID", "dataType": "integer"}, {"name": "Track Name", "dataType": "string"}]}, "emitted_at": 1661177367608} -{"stream": "activity_types", "data": {"id": 114, "name": "Change Nurture Track", "description": "Change the nurture track for a lead", "primaryAttribute": {"name": "Program ID", "dataType": "integer"}, "attributes": [{"name": "New Track ID", "dataType": "integer"}, {"name": "Previous Track ID", "dataType": "integer"}, {"name": "Previous Track Name", "dataType": "string"}, {"name": "Track Name", "dataType": "string"}]}, "emitted_at": 1661177367608} -{"stream": "activity_types", "data": {"id": 115, "name": "Change Nurture Cadence", "description": "Change the nurture cadence for a lead", "primaryAttribute": {"name": "Program ID", "dataType": "integer"}, "attributes": [{"name": "New Nurture Cadence", "dataType": "string"}, {"name": "Previous Nurture Cadence", "dataType": "string"}]}, "emitted_at": 1661177367609} -{"stream": "activity_types", "data": {"id": 123, "name": "Change Program Member Data", "description": "Change Program Member Data", "primaryAttribute": {"name": "Program ID", "dataType": "integer"}, "attributes": [{"name": "Attribute Display Name", "dataType": "string"}, {"name": "Attribute Name", "dataType": "integer"}, {"name": "New Value", "dataType": "mixed"}, {"name": "Old Value", "dataType": "mixed"}, {"name": "Reason", "dataType": "string"}, {"name": "Source", "dataType": "string"}]}, "emitted_at": 1661177367609} -{"stream": "activity_types", "data": {"id": 145, "name": "Push Lead to Marketo", "primaryAttribute": {"name": "Program ID", "dataType": "integer"}, "attributes": [{"name": "Reason", "dataType": "string"}, {"name": "Source", "dataType": "string"}, {"name": "API Method Name", "dataType": "string"}, {"name": "Modifying User", "dataType": "string"}, {"name": "Request Id", "dataType": "string"}]}, "emitted_at": 1661177367609} -{"stream": "activity_types", "data": {"id": 155, "name": "Execute Campaign", "description": "Invoke an executable campaign", "primaryAttribute": {"name": "Campaign ID", "dataType": "integer"}, "attributes": [{"name": "Qualified", "dataType": "boolean"}, {"name": "Token Context Campaign ID", "dataType": "integer"}, {"name": "Used Parent Campaign Token Context", "dataType": "boolean"}]}, "emitted_at": 1661177367609} -{"stream": "activity_types", "data": {"id": 157, "name": "Reply to Sales Email", "description": "User replies to a sales email", "primaryAttribute": {"name": "Artifact ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Marketo Sales Person ID", "dataType": "integer"}, {"name": "Sales Campaign Name", "dataType": "string"}, {"name": "Sales Campaign URL", "dataType": "string"}, {"name": "Sales Email URL", "dataType": "string"}, {"name": "Sales Template Name", "dataType": "string"}, {"name": "Sales Template URL", "dataType": "string"}, {"name": "Sent by", "dataType": "string"}, {"name": "Source", "dataType": "string"}, {"name": "Template ID", "dataType": "integer"}]}, "emitted_at": 1661177367609} -{"stream": "activity_types", "data": {"id": 158, "name": "Dialogue Engaged", "description": "Lead engages with Dynamic Chat dialogue", "primaryAttribute": {"name": "Dialogue Id", "dataType": "integer"}, "attributes": [{"name": "Chat Transcript", "dataType": "string"}, {"name": "Page URL", "dataType": "string"}, {"name": "Status", "dataType": "string"}]}, "emitted_at": 1661177367609} -{"stream": "activity_types", "data": {"id": 159, "name": "Document Interacted With", "description": "Lead interacts with a document in Dynamic Chat dialogue", "primaryAttribute": {"name": "Document Id", "dataType": "integer"}, "attributes": [{"name": "Dialogue Id", "dataType": "integer"}, {"name": "Document Downloaded", "dataType": "boolean"}, {"name": "Document Opened", "dataType": "boolean"}, {"name": "Document URL", "dataType": "string"}, {"name": "Search Terms", "dataType": "string"}]}, "emitted_at": 1661177367610} -{"stream": "activity_types", "data": {"id": 160, "name": "Dialogue Appointment Scheduled", "description": "Lead schedules an appointment in Dynamic Chat dialogue", "primaryAttribute": {"name": "Agent Id", "dataType": "integer"}, "attributes": [{"name": "Dialogue Id", "dataType": "integer"}, {"name": "Page URL", "dataType": "string"}, {"name": "Scheduled For", "dataType": "datetime"}, {"name": "Status", "dataType": "string"}]}, "emitted_at": 1661177367610} -{"stream": "activity_types", "data": {"id": 161, "name": "Dialogue Goal Reached", "description": "Lead reaches a goal in Dynamic Chat dialogue", "primaryAttribute": {"name": "Dialogue Id", "dataType": "integer"}, "attributes": [{"name": "Goal Name", "dataType": "string"}, {"name": "Page URL", "dataType": "string"}]}, "emitted_at": 1661177367610} -{"stream": "activity_types", "data": {"id": 400, "name": "Share Content", "description": "Share Content", "primaryAttribute": {"name": "Social App ID", "dataType": "integer"}, "attributes": [{"name": "Share Message", "dataType": "string"}, {"name": "Social App Type ID", "dataType": "integer"}, {"name": "Social Network", "dataType": "string"}, {"name": "Webpage ID", "dataType": "integer"}]}, "emitted_at": 1661177367610} -{"stream": "activities_visit_webpage", "data": {"marketoGUID": "1952", "leadId": 864, "activityDate": "2022-06-22T02:15:29Z", "activityTypeId": 1, "campaignId": 1051, "primaryAttributeValueId": "1", "primaryAttributeValue": "UnsubscribePage", "webpage_url": "/lp/datalineaedev/UnsubscribePage.html", "client_ip_address": "193.254.197.5", "user_agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "query_parameters": "mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGFKCnuS27x1GyhwFnd8EcZUeBin9Izd97Fjf1_l_oOdzmzE8qMwNcsnzARW-WUaop8fF9bsAT759OzqwwQoiyAK5ss6rwChiZ2", "referrer_url": "http://602-euo-598.mktoweb.com/"}, "emitted_at": 1661177561089} -{"stream": "activities_visit_webpage", "data": {"marketoGUID": "1953", "leadId": 864, "activityDate": "2022-06-22T02:15:27Z", "activityTypeId": 1, "campaignId": 1051, "primaryAttributeValueId": "1", "primaryAttributeValue": "UnsubscribePage", "webpage_url": "/lp/datalineaedev/UnsubscribePage.html", "client_ip_address": "24.154.57.72", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "query_parameters": "mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGFKCnuS27x1GyhwFnd8EcZUeBin9Izd97Fjf1_l_oOdzmzE8qMwNcsnzARW-WUaop8fF9bsAT759OzqwwQoiyAK5ss6rwChiZ2", "referrer_url": "http://602-euo-598.mktoweb.com/"}, "emitted_at": 1661177561091} -{"stream": "activities_visit_webpage", "data": {"marketoGUID": "2010", "leadId": 104, "activityDate": "2022-06-22T04:33:54Z", "activityTypeId": 1, "campaignId": 1050, "primaryAttributeValueId": "1", "primaryAttributeValue": "UnsubscribePage", "webpage_url": "/lp/datalineaedev/UnsubscribePage.html", "client_ip_address": "73.92.33.56", "user_agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/102.0.5005.87 Mobile/15E148 Safari/604.1", "query_parameters": "mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGFKCnqhn-Lmk6x4LkqZAcT7qEP0iguRDhjSVP0wJlwugOOpeoihjLcCbUUuBeiuzZVR6QkuJhP6A5_w2VjUK9sBq3TqnjZBati", "referrer_url": "http://602-euo-598.mktoweb.com/"}, "emitted_at": 1661177561093} -{"stream": "activities_visit_webpage", "data": {"marketoGUID": "2011", "leadId": 104, "activityDate": "2022-06-22T04:34:00Z", "activityTypeId": 1, "campaignId": null, "primaryAttributeValueId": "2", "primaryAttributeValue": "UnsubscribeConfirm", "webpage_url": "/lp/602-EUO-598/UnsubscribeConfirm.html", "client_ip_address": "73.92.33.56", "user_agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/102.0.5005.87 Mobile/15E148 Safari/604.1", "query_parameters": "aliId=eyJpIjoic1JzaitlMGZrN0Z6M1BoSSIsInQiOiJQcWk3QzFoTGdKUG9iUFpZT3I4WVwvQT09In0%3D", "referrer_url": "http://602-euo-598.mktoweb.com/lp/datalineaedev/UnsubscribePage.html?mkt_unsubscribe=1"}, "emitted_at": 1661177561094} -{"stream": "activities_visit_webpage", "data": {"marketoGUID": "2014", "leadId": 864, "activityDate": "2022-06-22T06:53:42Z", "activityTypeId": 1, "campaignId": 1050, "primaryAttributeValueId": "1", "primaryAttributeValue": "UnsubscribePage", "webpage_url": "/lp/datalineaedev/UnsubscribePage.html", "client_ip_address": "41.226.21.166", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "query_parameters": "mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGFKCnqaXQL6xkCtEfmzW_QXyH_0F2pPytjaVUu6Dj4O3t551YEee-hBHahI_1f7Ls0RqsqJMQJCimfQaMpv3f4QoE-D97h6NJK", "referrer_url": "http://602-euo-598.mktoweb.com/"}, "emitted_at": 1661177561096} \ No newline at end of file +{"stream": "programs", "data": {"id": 1016, "name": "123", "description": "", "createdAt": "2021-09-01T16:02:30Z", "updatedAt": "2023-01-17T12:36:46Z", "url": "https://app-sj32.marketo.com/#EBP1016A1", "type": "Email", "channel": "Email Send", "folder": {"type": "Program", "value": 1003, "folderName": "API Test Program"}, "status": "completed", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320100} +{"stream": "programs", "data": {"id": 1017, "name": "air", "description": "", "createdAt": "2021-09-01T16:09:23Z", "updatedAt": "2023-01-17T12:31:23Z", "url": "https://app-sj32.marketo.com/#EBP1017A1", "type": "Email", "channel": "Email Send", "folder": {"type": "Program", "value": 1003, "folderName": "API Test Program"}, "status": "completed", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320101} +{"stream": "programs", "data": {"id": 1003, "name": "API Test Program", "description": "Sample API Program", "createdAt": "2021-01-18T13:55:44Z", "updatedAt": "2023-01-20T13:02:44Z", "url": "https://app-sj32.marketo.com/#PG1003A1", "type": "Default", "channel": "Email Blast", "folder": {"type": "Folder", "value": 45, "folderName": "Active Marketing Programs"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320101} +{"stream": "programs", "data": {"id": 1004, "name": "API Test Program 1", "description": "Sample API Program 1", "createdAt": "2021-01-18T13:57:37Z", "updatedAt": "2023-01-24T11:20:05Z", "url": "https://app-sj32.marketo.com/#PG1004A1", "type": "Default", "channel": "Online Advertising", "folder": {"type": "Folder", "value": 45, "folderName": "Active Marketing Programs"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320102} +{"stream": "programs", "data": {"id": 1013, "name": "API Test Program 10", "description": "Sample API Program 10", "createdAt": "2021-01-18T13:57:46Z", "updatedAt": "2023-01-20T16:27:11Z", "url": "https://app-sj32.marketo.com/#PG1013A1", "type": "Default", "channel": "Online Advertising", "folder": {"type": "Folder", "value": 45, "folderName": "Active Marketing Programs"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320102} +{"stream": "programs", "data": {"id": 1012, "name": "API Test Program 9", "description": "Sample API Program 9", "createdAt": "2021-01-18T13:57:45Z", "updatedAt": "2023-01-20T16:14:21Z", "url": "https://app-sj32.marketo.com/#PG1012A1", "type": "Default", "channel": "Online Advertising", "folder": {"type": "Folder", "value": 50, "folderName": "Nurture"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320103} +{"stream": "programs", "data": {"id": 1028, "name": "BP-ES-YYYY-MM-DD Email Send v3", "description": "Quick and easy Email Send Program for sending one single email, with or without A/B test. Channel: \"Email Send\". \nNOTE: Don't forget to activate the \"01-Influenced\" Campaign for tracking Success!", "createdAt": "2023-01-23T08:02:31Z", "updatedAt": "2023-01-23T08:03:04Z", "url": "https://app-sj32.marketo.com/#EBP1028A1", "type": "Email", "channel": "Email Send", "folder": {"type": "Folder", "value": 54, "folderName": "Data Management"}, "status": "unlocked", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320103} +{"stream": "programs", "data": {"id": 1026, "name": "BP-LE-YYYY-MM-DD Live Event v3", "description": "Live Event Program, with registration page, three invitation emails, and follow-up emails. This is suitable for all events where you require registrations, including roadshows, lunches, dinners, or presentations at trade show events. Use the Marketo Events App for check-in and attendance tracking on your iPad or Android tablet.\nNOTE: Before the event, download the registration information to your iPad/Adroid Tablet. Then check-in visitors, and synchronize the attendance information back to Marketo. If you don't have a tablet, you can import attendees after under the Program's \"Members\" tab before sending your follow-up emails.", "createdAt": "2023-01-20T13:08:36Z", "updatedAt": "2023-01-20T16:32:34Z", "url": "https://app-sj32.marketo.com/#ME1026A1", "type": "Event", "channel": "Live Event", "folder": {"type": "Folder", "value": 48, "folderName": "Emails"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320103} +{"stream": "programs", "data": {"id": 1027, "name": "BP-LI-YYYY-MM-DD List Import v3", "description": "Program to manage imports of new target lists and record Acquisition Program at the same time. Go to the \"Members\" tab, and click on \"Import Members\". Follow the on-screen instructions, In Step 3, assign the Member Status \"On List\". \nNOTE: List Import Programs do not track \"Influence\", or \"Success\", because they do not communicate with anyone. Their sole purpose is to record Acquisition Program for First-Touch Attribution and other Analytics.", "createdAt": "2023-01-23T07:58:14Z", "updatedAt": "2023-01-23T07:58:59Z", "url": "https://app-sj32.marketo.com/#PG1027A1", "type": "Default", "channel": "List Import", "folder": {"type": "Folder", "value": 51, "folderName": "Web Content"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320104} +{"stream": "programs", "data": {"id": 1018, "name": "John Doe", "description": "", "createdAt": "2021-09-08T12:49:49Z", "updatedAt": "2023-01-17T12:29:10Z", "url": "https://app-sj32.marketo.com/#PG1018A1", "type": "Default", "channel": "Online Advertising", "folder": {"type": "Folder", "value": 52, "folderName": "Web Forms"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320104} +{"stream": "programs", "data": {"id": 1023, "name": "My Test Program 1", "description": "Test", "createdAt": "2023-01-17T12:38:35Z", "updatedAt": "2023-01-17T12:39:38Z", "url": "https://app-sj32.marketo.com/#EBP1023A1", "type": "Email", "channel": "Newsletter", "folder": {"type": "Folder", "value": 49, "folderName": "Newsletters"}, "status": "unlocked", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320105} +{"stream": "programs", "data": {"id": 1024, "name": "Test Event 1", "description": "Test", "createdAt": "2023-01-20T09:29:38Z", "updatedAt": "2023-01-20T09:30:59Z", "url": "https://app-sj32.marketo.com/#ME1024A1", "type": "Event", "channel": "Live Event", "folder": {"type": "Program", "value": 1003, "folderName": "API Test Program"}, "status": "", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320105} +{"stream": "programs", "data": {"id": 1025, "name": "Test Nurture", "description": "Test", "createdAt": "2023-01-20T09:51:39Z", "updatedAt": "2023-01-23T08:27:01Z", "url": "https://app-sj32.marketo.com/#NP1025A1", "type": "Engagement", "channel": "Nurture", "folder": {"type": "Folder", "value": 50, "folderName": "Nurture"}, "status": "on", "workspace": "Default", "headStart": false}, "emitted_at": 1674752320106} +{"stream": "campaigns", "data": {"id": 1053, "name": "Test Campaign 2", "description": "Description of the Test Campaign 2", "type": "batch", "workspaceName": "Default", "createdAt": "2023-01-17T10:53:35Z", "updatedAt": "2023-01-17T10:56:52Z", "active": false}, "emitted_at": 1674502101566} +{"stream": "campaigns", "data": {"id": 1054, "name": "Test Campaign 3", "description": "Description of the Test Campaign 3", "type": "batch", "workspaceName": "Default", "createdAt": "2023-01-17T10:54:04Z", "updatedAt": "2023-01-17T10:57:12Z", "active": false}, "emitted_at": 1674502101567} +{"stream": "campaigns", "data": {"id": 1055, "name": "Test Campaign 4", "description": "Description of the Test Campaign 4", "type": "batch", "workspaceName": "Default", "createdAt": "2023-01-17T10:54:24Z", "updatedAt": "2023-01-17T10:53:37Z", "active": false}, "emitted_at": 1674502101567} +{"stream": "campaigns", "data": {"id": 1056, "name": "Test Campaign 5", "description": "Description of the Test Campaign 5", "type": "trigger", "workspaceName": "Default", "createdAt": "2023-01-17T10:54:45Z", "updatedAt": "2023-01-20T16:25:04Z", "active": false}, "emitted_at": 1674502101568} +{"stream": "campaigns", "data": {"id": 1124, "name": "Test Smart Campaign", "description": "Test", "type": "batch", "programName": "API Test Program", "programId": 1003, "workspaceName": "Default", "createdAt": "2023-01-20T12:46:51Z", "updatedAt": "2023-01-23T08:24:16Z", "active": false}, "emitted_at": 1674502101569} +{"stream": "campaigns", "data": {"id": 1130, "name": "01-Process Registrations", "description": "This campaign must be activated BEFORE the registration URL is published. It sets the program status to \"Registered\", which makes the registrant's information available to the Marketo's mobile event app. Then the registrant gets a confirmation email with a calendar link.", "type": "trigger", "programName": "BP-LE-YYYY-MM-DD Live Event v3", "programId": 1026, "workspaceName": "Default", "createdAt": "2023-01-20T13:08:56Z", "updatedAt": "2023-01-20T13:09:53Z", "active": false}, "emitted_at": 1674502101569} +{"stream": "campaigns", "data": {"id": 1131, "name": "02a-Send Invitation", "description": "This campaign sends the initial invitation for the event. It should only include marketable leads, which have checked the proper subscription option.", "type": "batch", "programName": "BP-LE-YYYY-MM-DD Live Event v3", "programId": 1026, "workspaceName": "Default", "createdAt": "2023-01-20T13:08:56Z", "updatedAt": "2023-01-20T13:08:58Z", "active": false}, "emitted_at": 1674502101570} +{"stream": "campaigns", "data": {"id": 1132, "name": "04-Send Follow-up Emails", "description": "This campaign assumes that all registrants have been updated to a new program status of \"Attended\" or \"No Show\". You can do this by using the Marketo mobile event app for checking-in attendees, or you can import lists of attendees and no shows under the Program's Members tab. This campaign will then send follow-up emails that you can use to further engage your audience.", "type": "batch", "programName": "BP-LE-YYYY-MM-DD Live Event v3", "programId": 1026, "workspaceName": "Default", "createdAt": "2023-01-20T13:08:56Z", "updatedAt": "2023-01-20T13:08:58Z", "active": false}, "emitted_at": 1674502101570} +{"stream": "campaigns", "data": {"id": 1133, "name": "02b-Send Invitation Reminder", "description": "This campaign sends a reminder to people who received the original invitation, but have not registered, yet.", "type": "batch", "programName": "BP-LE-YYYY-MM-DD Live Event v3", "programId": 1026, "workspaceName": "Default", "createdAt": "2023-01-20T13:08:56Z", "updatedAt": "2023-01-20T13:08:57Z", "active": false}, "emitted_at": 1674502101571} +{"stream": "campaigns", "data": {"id": 1134, "name": "02c-Send Invitation Last Chance", "description": "This campaign sends a last reminder to people who received the original invitation, but have not registered, yet.", "type": "batch", "programName": "BP-LE-YYYY-MM-DD Live Event v3", "programId": 1026, "workspaceName": "Default", "createdAt": "2023-01-20T13:08:56Z", "updatedAt": "2023-01-20T13:08:57Z", "active": false}, "emitted_at": 1674502101571} +{"stream": "lists", "data": {"id": 1016, "name": "List 1", "description": "Test", "programName": "API Test Program", "workspaceId": 1, "workspaceName": "Default", "createdAt": "2023-01-17T12:43:09Z", "updatedAt": "2023-01-20T13:11:03Z"}, "emitted_at": 1674502102513} +{"stream": "lists", "data": {"id": 1017, "name": "List 2", "description": "Test", "programName": "API Test Program", "workspaceId": 1, "workspaceName": "Default", "createdAt": "2023-01-17T12:43:41Z", "updatedAt": "2023-01-17T12:43:43Z"}, "emitted_at": 1674502102514} +{"stream": "lists", "data": {"id": 1018, "name": "List 3", "description": "Test", "programName": "API Test Program", "workspaceId": 1, "workspaceName": "Default", "createdAt": "2023-01-17T12:43:59Z", "updatedAt": "2023-01-17T12:44:00Z"}, "emitted_at": 1674502102515} +{"stream": "lists", "data": {"id": 1019, "name": "List 4", "description": "Test", "programName": "API Test Program", "workspaceId": 1, "workspaceName": "Default", "createdAt": "2023-01-17T12:44:15Z", "updatedAt": "2023-01-17T12:44:16Z"}, "emitted_at": 1674502102515} +{"stream": "lists", "data": {"id": 1020, "name": "List 5", "description": "Test", "programName": "API Test Program", "workspaceId": 1, "workspaceName": "Default", "createdAt": "2023-01-17T12:44:28Z", "updatedAt": "2023-01-17T12:44:30Z"}, "emitted_at": 1674502102516} +{"stream": "leads", "data": {"company": "Test Company", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 885, "mktoName": "Test Person 1 All People", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Test Person 1", "middleName": null, "lastName": "All People", "email": "0M996mK4pH@ttt.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "89", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": null, "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2023-01-17T11:00:58Z", "updatedAt": "2023-01-24T11:10:51Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "885", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "885", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1674760920165} +{"stream": "leads", "data": {"company": null, "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": "airbyte.io", "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 888, "mktoName": "[Sample]Name Surname", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "[Sample]Name", "middleName": null, "lastName": "Surname", "email": "i.g@example.io", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "90", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": "Asia/Riyadh", "originalSourceType": "Web form fillout", "originalSourceInfo": "Form: API Test Program.123.airbyte", "registrationSourceType": "Web form fillout", "registrationSourceInfo": "Form: API Test Program.123.airbyte", "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": "http://602-euo-598.mktoweb.com/lp/602-EUO-598/Landing-Page-2.html", "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": "85.209.47.207", "inferredCompany": "Arabic Computer System Co.", "inferredCountry": "Saudi Arabia", "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2023-01-17T12:29:38Z", "updatedAt": "2023-01-24T11:10:51Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "888", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "888", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1674760920169} +{"stream": "leads", "data": {"company": null, "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": "globallogic.com", "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 889, "mktoName": "[Sample] sample", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "[Sample]", "middleName": null, "lastName": "sample", "email": "i.g@example.io", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "91", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": "Asia/Riyadh", "originalSourceType": "Web form fillout", "originalSourceInfo": "Form: API Test Program.123.airbyte", "registrationSourceType": "Web form fillout", "registrationSourceInfo": "Form: API Test Program.123.airbyte", "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": "http://602-euo-598.mktoweb.com/lp/602-EUO-598/Landing-Page-3.html", "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": "85.209.47.207", "inferredCompany": "Arabic Computer System Co.", "inferredCountry": "Saudi Arabia", "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2023-01-17T12:30:09Z", "updatedAt": "2023-01-24T11:10:51Z", "cookies": "_mch-mktoweb.com-1673954921699-88079", "externalSalesPersonId": null, "leadPerson": "889", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "889", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1674760920170} +{"stream": "leads", "data": {"company": "Test Company Org 5", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 890, "mktoName": "Test Person 10 Test 10", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Test Person 10", "middleName": null, "lastName": "Test 10", "email": "name10@example.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "92", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": "US", "postalCode": null, "personTimeZone": "America/Chicago", "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2023-01-19T15:07:51Z", "updatedAt": "2023-01-24T11:10:51Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "890", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "890", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1674760920171} +{"stream": "leads", "data": {"company": "Test Company Org 11", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 891, "mktoName": "Name11 Surname11", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Name11", "middleName": null, "lastName": "Surname11", "email": "name11@example.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "93", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": "US", "postalCode": null, "personTimeZone": "America/Chicago", "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2023-01-19T15:25:17Z", "updatedAt": "2023-01-19T15:27:44Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "891", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "891", "leadPartitionId": "3", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1674760920173} +{"stream": "leads", "data": {"company": "Test Company Org 2", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 895, "mktoName": "Test 2", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Test", "middleName": null, "lastName": "2", "email": "name5@example.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "94", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": null, "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2023-01-20T11:56:00Z", "updatedAt": "2023-01-24T11:10:51Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "895", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "895", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1674760920174} +{"stream": "leads", "data": {"company": "Test Company Org 5", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 897, "mktoName": "Test test", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Test", "middleName": null, "lastName": "test", "email": "name8@example.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "95", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": null, "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2023-01-23T08:09:55Z", "updatedAt": "2023-01-24T11:10:51Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "897", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "897", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1674760920175} +{"stream": "leads", "data": {"company": "Test Company Org 5", "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 898, "mktoName": "Person 1 Person 1", "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": "Person 1", "middleName": null, "lastName": "Person 1", "email": "name100@example.com", "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "96", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": null, "originalSourceType": "New lead", "originalSourceInfo": null, "registrationSourceType": "New lead", "registrationSourceInfo": null, "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": null, "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": null, "inferredCompany": null, "inferredCountry": null, "inferredCity": null, "inferredStateRegion": null, "inferredPostalCode": null, "inferredMetropolitanArea": null, "inferredPhoneAreaCode": null, "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2023-01-23T08:20:01Z", "updatedAt": "2023-01-24T11:10:51Z", "cookies": null, "externalSalesPersonId": null, "leadPerson": "898", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "898", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1674760920176} +{"stream": "leads", "data": {"company": null, "site": null, "billingStreet": null, "billingCity": null, "billingState": null, "billingCountry": null, "billingPostalCode": null, "website": null, "mainPhone": null, "annualRevenue": null, "numberOfEmployees": null, "industry": null, "sicCode": null, "mktoCompanyNotes": null, "externalCompanyId": null, "id": 901, "mktoName": null, "personType": "contact", "mktoIsPartner": false, "isLead": true, "mktoIsCustomer": false, "isAnonymous": false, "salutation": null, "firstName": null, "middleName": null, "lastName": null, "email": null, "phone": null, "mobilePhone": null, "fax": null, "title": null, "contactCompany": "97", "dateOfBirth": null, "address": null, "city": null, "state": null, "country": null, "postalCode": null, "personTimeZone": "America/New_York", "originalSourceType": "Web form fillout", "originalSourceInfo": "Form: API Test Program.123.airbyte", "registrationSourceType": "Web form fillout", "registrationSourceInfo": "Form: API Test Program.123.airbyte", "originalSearchEngine": null, "originalSearchPhrase": null, "originalReferrer": "http://602-euo-598.mktoweb.com/lp/602-EUO-598/Landing-Page-3.html", "emailInvalid": false, "emailInvalidCause": null, "unsubscribed": false, "unsubscribedReason": null, "doNotCall": false, "mktoDoNotCallCause": null, "doNotCallReason": null, "marketingSuspended": false, "marketingSuspendedCause": null, "blackListed": false, "blackListedCause": null, "mktoPersonNotes": null, "anonymousIP": "63.117.14.132", "inferredCompany": "Verizon Business", "inferredCountry": "United States", "inferredCity": "Bronx", "inferredStateRegion": "NY", "inferredPostalCode": "10472", "inferredMetropolitanArea": "New York NY (MRC-501)", "inferredPhoneAreaCode": "718", "emailSuspended": null, "emailSuspendedCause": null, "emailSuspendedAt": null, "department": null, "createdAt": "2023-01-25T00:21:35Z", "updatedAt": "2023-01-25T00:21:37Z", "cookies": "_mch-mktoweb.com-1674606091542-53000", "externalSalesPersonId": null, "leadPerson": "901", "leadRole": null, "leadSource": null, "leadStatus": null, "leadScore": null, "urgency": null, "priority": null, "relativeScore": null, "relativeUrgency": null, "rating": null, "personPrimaryLeadInterest": "901", "leadPartitionId": "1", "leadRevenueCycleModelId": null, "leadRevenueStageId": null, "acquisitionProgramId": null, "mktoAcquisitionDate": null}, "emitted_at": 1674760920177} +{"stream": "activity_types", "data": {"id": 1, "name": "Visit Webpage", "description": "User visits a web page", "primaryAttribute": {"name": "Webpage ID", "dataType": "integer"}, "attributes": [{"name": "Client IP Address", "dataType": "string"}, {"name": "Query Parameters", "dataType": "string"}, {"name": "Referrer URL", "dataType": "string"}, {"name": "Search Engine", "dataType": "string"}, {"name": "Search Query", "dataType": "string"}, {"name": "User Agent", "dataType": "string"}, {"name": "Webpage URL", "dataType": "string"}]}, "emitted_at": 1674502168258} +{"stream": "activity_types", "data": {"id": 2, "name": "Fill Out Form", "description": "User fills out and submits a form on web page", "primaryAttribute": {"name": "Webform ID", "dataType": "integer"}, "attributes": [{"name": "Client IP Address", "dataType": "string"}, {"name": "Form Fields", "dataType": "text"}, {"name": "Query Parameters", "dataType": "string"}, {"name": "Referrer URL", "dataType": "string"}, {"name": "User Agent", "dataType": "string"}, {"name": "Webpage ID", "dataType": "integer"}]}, "emitted_at": 1674502168259} +{"stream": "activity_types", "data": {"id": 3, "name": "Click Link", "description": "User clicks link on a page", "primaryAttribute": {"name": "Link ID", "dataType": "integer"}, "attributes": [{"name": "Client IP Address", "dataType": "string"}, {"name": "Query Parameters", "dataType": "string"}, {"name": "Referrer URL", "dataType": "string"}, {"name": "User Agent", "dataType": "string"}, {"name": "Webpage ID", "dataType": "integer"}]}, "emitted_at": 1674502168261} +{"stream": "activity_types", "data": {"id": 6, "name": "Send Email", "description": "Send Marketo Email to a person", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Test Variant", "dataType": "integer"}]}, "emitted_at": 1674502168262} +{"stream": "activity_types", "data": {"id": 7, "name": "Email Delivered", "description": "Marketo Email is delivered to a lead/contact", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Test Variant", "dataType": "integer"}]}, "emitted_at": 1674502168263} +{"stream": "activity_types", "data": {"id": 8, "name": "Email Bounced", "description": "Marketo Email is bounced for a lead", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Category", "dataType": "string"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Details", "dataType": "string"}, {"name": "Email", "dataType": "string"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Subcategory", "dataType": "string"}, {"name": "Test Variant", "dataType": "integer"}]}, "emitted_at": 1674502168264} +{"stream": "activity_types", "data": {"id": 9, "name": "Unsubscribe Email", "description": "Person unsubscribed from Marketo Emails", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Campaign Run ID", "dataType": "Integer"}, {"name": "Client IP Address", "dataType": "string"}, {"name": "Form Fields", "dataType": "text"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Query Parameters", "dataType": "string"}, {"name": "Referrer URL", "dataType": "string"}, {"name": "Test Variant", "dataType": "integer"}, {"name": "User Agent", "dataType": "string"}, {"name": "Webform ID", "dataType": "integer"}, {"name": "Webpage ID", "dataType": "integer"}]}, "emitted_at": 1674502168264} +{"stream": "activity_types", "data": {"id": 10, "name": "Open Email", "description": "User opens Marketo Email", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Bot Activity Pattern", "dataType": "string"}, {"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Device", "dataType": "string"}, {"name": "Has Predictive", "dataType": "boolean"}, {"name": "Is Bot Activity", "dataType": "boolean"}, {"name": "Is Mobile Device", "dataType": "boolean"}, {"name": "Platform", "dataType": "string"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Test Variant", "dataType": "integer"}, {"name": "User Agent", "dataType": "string"}]}, "emitted_at": 1674502168265} +{"stream": "activity_types", "data": {"id": 11, "name": "Click Email", "description": "User clicks on a link in a Marketo Email", "primaryAttribute": {"name": "Mailing ID", "dataType": "integer"}, "attributes": [{"name": "Bot Activity Pattern", "dataType": "string"}, {"name": "Campaign Run ID", "dataType": "integer"}, {"name": "Choice Number", "dataType": "integer"}, {"name": "Device", "dataType": "string"}, {"name": "Is Bot Activity", "dataType": "boolean"}, {"name": "Is Mobile Device", "dataType": "boolean"}, {"name": "Is Predictive", "dataType": "boolean"}, {"name": "Link", "dataType": "string"}, {"name": "Link ID", "dataType": "string"}, {"name": "Platform", "dataType": "string"}, {"name": "Step ID", "dataType": "integer"}, {"name": "Test Variant", "dataType": "integer"}, {"name": "User Agent", "dataType": "string"}]}, "emitted_at": 1674502168266} +{"stream": "activity_types", "data": {"id": 12, "name": "New Lead", "description": "New person/record is added to the lead database", "attributes": [{"name": "Created Date", "dataType": "date"}, {"name": "Form Name", "dataType": "string"}, {"name": "Lead Source", "dataType": "string"}, {"name": "List Name", "dataType": "string"}, {"name": "SFDC Type", "dataType": "string"}, {"name": "Source Type", "dataType": "string"}, {"name": "API Method Name", "dataType": "string"}, {"name": "Modifying User", "dataType": "string"}, {"name": "Request Id", "dataType": "string"}]}, "emitted_at": 1674502168267} + {"stream": "activities_visit_webpage", "data": {"marketoGUID": "2125", "leadId": 864, "activityDate": "2023-01-17T11:29:20Z", "activityTypeId": 1, "campaignId": null, "primaryAttributeValueId": "10", "primaryAttributeValue": "Landing-Page-1", "webpage_url": "/lp/602-EUO-598/Landing-Page-1.html", "client_ip_address": "85.209.47.207", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.52", "query_parameters": null, "referrer_url": "https://602-euo-598.mktoweb.com/"}, "emitted_at": 1674502300617} +{"stream": "activities_visit_webpage", "data": {"marketoGUID": "2132", "leadId": 888, "activityDate": "2023-01-17T12:29:28Z", "activityTypeId": 1, "campaignId": null, "primaryAttributeValueId": "11", "primaryAttributeValue": "Landing-Page-2", "webpage_url": "/lp/602-EUO-598/Landing-Page-2.html", "client_ip_address": "85.209.47.207", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.52", "query_parameters": null, "referrer_url": "http://602-euo-598.mktoweb.com/"}, "emitted_at": 1674502300618} +{"stream": "activities_visit_webpage", "data": {"marketoGUID": "2133", "leadId": 888, "activityDate": "2023-01-17T12:29:51Z", "activityTypeId": 1, "campaignId": null, "primaryAttributeValueId": "12", "primaryAttributeValue": "Landing-Page-3", "webpage_url": "/lp/602-EUO-598/Landing-Page-3.html", "client_ip_address": "85.209.47.207", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.52", "query_parameters": null, "referrer_url": "http://602-euo-598.mktoweb.com/"}, "emitted_at": 1674502300619} +{"stream": "activities_visit_webpage", "data": {"marketoGUID": "2199", "leadId": 864, "activityDate": "2023-01-20T12:40:22Z", "activityTypeId": 1, "campaignId": null, "primaryAttributeValueId": "1", "primaryAttributeValue": "UnsubscribePage", "webpage_url": "/lp/datalineaedev/UnsubscribePage.html", "client_ip_address": "85.209.47.207", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0", "query_parameters": "mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGJbdICA9DCAo37JqD5ozxyzAlhl8ryjBs-YDMZdHsGTFeOe-C6dFcD19gwXxmu7jXj3HO-IA2VTSiA7upNlg", "referrer_url": "http://mkto-sj320154.com/"}, "emitted_at": 1674502300620} +{"stream": "activities_visit_webpage", "data": {"marketoGUID": "2200", "leadId": 864, "activityDate": "2023-01-20T12:40:36Z", "activityTypeId": 1, "campaignId": null, "primaryAttributeValueId": "2", "primaryAttributeValue": "UnsubscribeConfirm", "webpage_url": "/lp/602-EUO-598/UnsubscribeConfirm.html", "client_ip_address": "85.209.47.207", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0", "query_parameters": "aliId=eyJpIjoiT2hyTkpVMUJTSUZRajZIZyIsInQiOiJKXC9xOUlRU3ZRR0czdlBTWnkxS3dzQT09In0%3D", "referrer_url": "http://602-euo-598.mktoweb.com/lp/datalineaedev/UnsubscribePage.html?mkt_unsubscribe=1"}, "emitted_at": 1674502300621} +{"stream": "activities_change_lead_partition", "data": {"marketoGUID": "2150", "leadId": 891, "activityDate": "2023-01-19T15:45:54Z", "activityTypeId": 100, "campaignId": 1077, "primaryAttributeValueId": "3", "primaryAttributeValue": "Test Partition 2", "old_partition_id": 2, "reason": "Lead Action"}, "emitted_at": 1674502553002} +{"stream": "activities_change_lead_partition", "data": {"marketoGUID": "2151", "leadId": 800, "activityDate": "2023-01-19T15:46:23Z", "activityTypeId": 100, "campaignId": 1079, "primaryAttributeValueId": "2", "primaryAttributeValue": "Test Partition", "old_partition_id": 1, "reason": "Lead Action"}, "emitted_at": 1674502553002} +{"stream": "activities_change_lead_partition", "data": {"marketoGUID": "2152", "leadId": 112, "activityDate": "2023-01-19T15:46:23Z", "activityTypeId": 100, "campaignId": 1078, "primaryAttributeValueId": "2", "primaryAttributeValue": "Test Partition", "old_partition_id": 1, "reason": "Lead Action"}, "emitted_at": 1674502553002} +{"stream": "activities_change_lead_partition", "data": {"marketoGUID": "2153", "leadId": 807, "activityDate": "2023-01-19T15:46:53Z", "activityTypeId": 100, "campaignId": 1080, "primaryAttributeValueId": "2", "primaryAttributeValue": "Test Partition", "old_partition_id": 1, "reason": "Lead Action"}, "emitted_at": 1674502553002} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2114", "leadId": 100, "activityDate": "2023-01-17T11:07:53Z", "activityTypeId": 104, "campaignId": 1061, "primaryAttributeValueId": "1013", "primaryAttributeValue": "API Test Program 10", "old_status_id": 9, "new_status_id": 10, "acquired_by": false, "old_status": "Not in Program", "new_status": "Filled-out Form", "program_member_id": 120, "success": false}, "emitted_at": 1674502931187} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2122", "leadId": 807, "activityDate": "2023-01-17T11:26:23Z", "activityTypeId": 104, "campaignId": 1068, "primaryAttributeValueId": "1008", "primaryAttributeValue": "API Test Program 5", "old_status_id": 9, "new_status_id": 11, "acquired_by": false, "old_status": "Not in Program", "new_status": "Influenced", "program_member_id": 121, "success": true}, "emitted_at": 1674502931188} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2141", "leadId": 23, "activityDate": "2023-01-19T14:48:24Z", "activityTypeId": 104, "campaignId": 1075, "primaryAttributeValueId": "1004", "primaryAttributeValue": "API Test Program 1", "old_status_id": 9, "new_status_id": 10, "acquired_by": false, "old_status": "Not in Program", "new_status": "Filled-out Form", "program_member_id": 122, "success": false}, "emitted_at": 1674502931189} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2156", "leadId": 105, "activityDate": "2023-01-20T09:41:23Z", "activityTypeId": 104, "campaignId": 1083, "primaryAttributeValueId": "1004", "primaryAttributeValue": "API Test Program 1", "old_status_id": 9, "new_status_id": 10, "acquired_by": false, "old_status": "Not in Program", "new_status": "Filled-out Form", "program_member_id": 123, "success": false}, "emitted_at": 1674502931190} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2157", "leadId": 23, "activityDate": "2023-01-20T09:42:23Z", "activityTypeId": 104, "campaignId": 1084, "primaryAttributeValueId": "1006", "primaryAttributeValue": "API Test Program 3", "old_status_id": 9, "new_status_id": 10, "acquired_by": false, "old_status": "Not in Program", "new_status": "Filled-out Form", "program_member_id": 124, "success": false}, "emitted_at": 1674502931191} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2158", "leadId": 100, "activityDate": "2023-01-20T09:42:53Z", "activityTypeId": 104, "campaignId": 1086, "primaryAttributeValueId": "1008", "primaryAttributeValue": "API Test Program 5", "old_status_id": 9, "new_status_id": 11, "acquired_by": false, "old_status": "Not in Program", "new_status": "Influenced", "program_member_id": 125, "success": true}, "emitted_at": 1674502931191} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2159", "leadId": 99, "activityDate": "2023-01-20T09:42:53Z", "activityTypeId": 104, "campaignId": 1085, "primaryAttributeValueId": "1013", "primaryAttributeValue": "API Test Program 10", "old_status_id": 9, "new_status_id": 11, "acquired_by": false, "old_status": "Not in Program", "new_status": "Influenced", "program_member_id": 126, "success": true}, "emitted_at": 1674502931191} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2160", "leadId": 104, "activityDate": "2023-01-20T09:43:23Z", "activityTypeId": 104, "campaignId": 1088, "primaryAttributeValueId": "1010", "primaryAttributeValue": "API Test Program 7", "old_status_id": 9, "new_status_id": 10, "acquired_by": false, "old_status": "Not in Program", "new_status": "Filled-out Form", "program_member_id": 127, "success": false}, "emitted_at": 1674502931191} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2161", "leadId": 105, "activityDate": "2023-01-20T09:43:53Z", "activityTypeId": 104, "campaignId": 1089, "primaryAttributeValueId": "1011", "primaryAttributeValue": "API Test Program 8", "old_status_id": 9, "new_status_id": 10, "acquired_by": false, "old_status": "Not in Program", "new_status": "Filled-out Form", "program_member_id": 128, "success": false}, "emitted_at": 1674502931192} +{"stream": "activities_change_statusin_progression", "data": {"marketoGUID": "2171", "leadId": 99, "activityDate": "2023-01-20T09:57:53Z", "activityTypeId": 104, "campaignId": 1102, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "old_status_id": 30, "new_status_id": 31, "acquired_by": false, "old_status": "Not in Program", "new_status": "Member", "program_member_id": 129, "success": false}, "emitted_at": 1674502931192} +{"stream": "activities_removefrom_list", "data": {"marketoGUID": "2165", "leadId": 379, "activityDate": "2023-01-20T09:46:23Z", "activityTypeId": 25, "campaignId": 1094, "primaryAttributeValueId": "1017", "primaryAttributeValue": "API Test Program.List 2", "source": "Marketo Flow Action"}, "emitted_at": 1674503059287} +{"stream": "activities_removefrom_list", "data": {"marketoGUID": "2166", "leadId": 104, "activityDate": "2023-01-20T09:46:53Z", "activityTypeId": 25, "campaignId": 1095, "primaryAttributeValueId": "1016", "primaryAttributeValue": "API Test Program.List 1", "source": "Marketo Flow Action"}, "emitted_at": 1674503059288} +{"stream": "activities_removefrom_list", "data": {"marketoGUID": "2167", "leadId": 801, "activityDate": "2023-01-20T09:47:23Z", "activityTypeId": 25, "campaignId": 1096, "primaryAttributeValueId": "1017", "primaryAttributeValue": "API Test Program.List 2", "source": "Marketo Flow Action"}, "emitted_at": 1674503059289} +{"stream": "activities_removefrom_list", "data": {"marketoGUID": "2168", "leadId": 802, "activityDate": "2023-01-20T09:48:23Z", "activityTypeId": 25, "campaignId": 1097, "primaryAttributeValueId": "1017", "primaryAttributeValue": "API Test Program.List 2", "source": "Marketo Flow Action"}, "emitted_at": 1674503059289} +{"stream": "activities_addto_nurture", "data": {"marketoGUID": "2169", "leadId": 99, "activityDate": "2023-01-20T09:57:53Z", "activityTypeId": 113, "campaignId": 1102, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "track_id": 1, "track_name": "Stream 1"}, "emitted_at": 1674503186881} +{"stream": "activities_addto_nurture", "data": {"marketoGUID": "2172", "leadId": 800, "activityDate": "2023-01-20T09:59:53Z", "activityTypeId": 113, "campaignId": 1103, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "track_id": 1, "track_name": "Stream 1"}, "emitted_at": 1674503186883} +{"stream": "activities_addto_nurture", "data": {"marketoGUID": "2189", "leadId": 105, "activityDate": "2023-01-20T11:53:23Z", "activityTypeId": 113, "campaignId": 1112, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "track_id": 1, "track_name": "Stream 1"}, "emitted_at": 1674503186884} +{"stream": "activities_addto_nurture", "data": {"marketoGUID": "2202", "leadId": 876, "activityDate": "2023-01-20T12:48:53Z", "activityTypeId": 113, "campaignId": 1125, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "track_id": 1, "track_name": "Stream 1"}, "emitted_at": 1674503186885} +{"stream": "activities_addto_nurture", "data": {"marketoGUID": "2218", "leadId": 379, "activityDate": "2023-01-20T13:00:24Z", "activityTypeId": 113, "campaignId": 1127, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "track_id": 1, "track_name": "Stream 1"}, "emitted_at": 1674503186885} +{"stream": "activities_addto_nurture", "data": {"marketoGUID": "2267", "leadId": 880, "activityDate": "2023-01-23T08:24:51Z", "activityTypeId": 113, "campaignId": 1158, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "track_id": 1, "track_name": "Stream 1"}, "emitted_at": 1674503186885} +{"stream": "activities_email_bounced_soft", "data": {"marketoGUID": "2137", "leadId": 807, "activityDate": "2023-01-18T11:25:57Z", "activityTypeId": 27, "campaignId": 1066, "primaryAttributeValueId": "1002", "primaryAttributeValue": "EM - Auteur - v1.EM - Auteur - v1", "campaign_run_id": 28, "category": "4", "email": "kjashaedd-13@klooblept.com", "details": "554 5.4.7 [internal] (last transfail: 454 4.4.4 [internal] no MX or A for domain)", "subcategory": "4003", "step_id": 110, "choice_number": 118}, "emitted_at": 1674503313861} +{"stream": "activities_email_bounced_soft", "data": {"marketoGUID": "2138", "leadId": 816, "activityDate": "2023-01-18T11:26:56Z", "activityTypeId": 27, "campaignId": 1070, "primaryAttributeValueId": "1002", "primaryAttributeValue": "EM - Auteur - v1.EM - Auteur - v1", "campaign_run_id": 30, "category": "4", "email": "kjashaedd-37@klooblept.com", "details": "554 5.4.7 [internal] (last transfail: 454 4.4.4 [internal] no MX or A for domain)", "subcategory": "4003", "step_id": 126, "choice_number": 134}, "emitted_at": 1674503313862} +{"stream": "activities_email_bounced_soft", "data": {"marketoGUID": "2240", "leadId": 99, "activityDate": "2023-01-20T16:21:27Z", "activityTypeId": 27, "campaignId": 1138, "primaryAttributeValueId": "1013", "primaryAttributeValue": "BP-LE-YYYY-MM-DD Live Event v3.EMAIL-Invitation", "campaign_run_id": 92, "category": "4", "email": "name2@example.com", "details": "551 5.7.0 [internal] recipient blackholed", "subcategory": "4006", "step_id": 417, "choice_number": 544}, "emitted_at": 1674503313863} +{"stream": "activities_email_bounced_soft", "data": {"marketoGUID": "2256", "leadId": 99, "activityDate": "2023-01-22T11:57:55Z", "activityTypeId": 27, "campaignId": 1100, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 95, "category": "4", "email": "name2@example.com", "details": "551 5.7.0 [internal] recipient blackholed", "subcategory": "4006", "step_id": 245, "choice_number": 260}, "emitted_at": 1674503313864} +{"stream": "activities_email_bounced_soft", "data": {"marketoGUID": "2257", "leadId": 379, "activityDate": "2023-01-22T11:57:56Z", "activityTypeId": 27, "campaignId": 1100, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 95, "category": "3", "email": "testemail@gmail.com", "details": "552-5.2.2 The email account that you tried to reach is over quota and inactive.\r\n552-5.2.2 Please direct the recipient to\r\n552 5.2.2 https://support.google.com/mail/?p=OverQuotaPerm c1-20020a62e801000000b0058df8aad481si11279798pfi.352 - gsmtp", "subcategory": "3001", "step_id": 245, "choice_number": 260}, "emitted_at": 1674503313864} +{"stream": "activities_email_bounced_soft", "data": {"marketoGUID": "2284", "leadId": 800, "activityDate": "2023-01-23T11:58:00Z", "activityTypeId": 27, "campaignId": 1100, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 95, "category": "4", "email": "kjashaedd-1@klooblept.com", "details": "554 5.4.7 [internal] (last transfail: 454 4.4.4 [internal] no MX or A for domain)", "subcategory": "4003", "step_id": 245, "choice_number": 260}, "emitted_at": 1674503313865} +{"stream": "activities_merge_leads", "data": {"marketoGUID": "2126", "leadId": 864, "activityDate": "2023-01-17T11:29:43Z", "activityTypeId": 32, "campaignId": null, "primaryAttributeValueId": "864", "primaryAttributeValue": "yuriiyurii", "merge_ids": [887]}, "emitted_at": 1674503566607} +{"stream": "activities_merge_leads", "data": {"marketoGUID": "2184", "leadId": 809, "activityDate": "2023-01-20T11:44:22Z", "activityTypeId": 32, "campaignId": null, "primaryAttributeValueId": "809", "primaryAttributeValue": "Kataldar-30", "merge_ids": [811], "mergedin_sales": false, "merge_source": "leaddb", "master_updated": false}, "emitted_at": 1674503566608} +{"stream": "activities_send_email", "data": {"marketoGUID": "2112", "leadId": 100, "activityDate": "2023-01-17T11:07:28Z", "activityTypeId": 6, "campaignId": 1060, "primaryAttributeValueId": "1005", "primaryAttributeValue": "API Test Program.123.123", "campaign_run_id": 22, "step_id": 90, "choice_number": 0}, "emitted_at": 1674503692852} +{"stream": "activities_send_email", "data": {"marketoGUID": "2121", "leadId": 807, "activityDate": "2023-01-17T11:25:57Z", "activityTypeId": 6, "campaignId": 1066, "primaryAttributeValueId": "1002", "primaryAttributeValue": "EM - Auteur - v1.EM - Auteur - v1", "campaign_run_id": 28, "step_id": 110, "choice_number": 0}, "emitted_at": 1674503692853} +{"stream": "activities_send_email", "data": {"marketoGUID": "2124", "leadId": 816, "activityDate": "2023-01-17T11:26:57Z", "activityTypeId": 6, "campaignId": 1070, "primaryAttributeValueId": "1002", "primaryAttributeValue": "EM - Auteur - v1.EM - Auteur - v1", "campaign_run_id": 30, "step_id": 126, "choice_number": 0}, "emitted_at": 1674503692854} +{"stream": "activities_send_email", "data": {"marketoGUID": "2185", "leadId": 109, "activityDate": "2023-01-20T11:45:57Z", "activityTypeId": 6, "campaignId": 1109, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 66, "step_id": 305, "choice_number": 0}, "emitted_at": 1674503692855} +{"stream": "activities_send_email", "data": {"marketoGUID": "2206", "leadId": 876, "activityDate": "2023-01-20T12:49:27Z", "activityTypeId": 6, "campaignId": 1126, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 86, "step_id": 364, "choice_number": 0}, "emitted_at": 1674503692855} +{"stream": "activities_send_email", "data": {"marketoGUID": "2239", "leadId": 99, "activityDate": "2023-01-20T16:21:28Z", "activityTypeId": 6, "campaignId": 1138, "primaryAttributeValueId": "1013", "primaryAttributeValue": "BP-LE-YYYY-MM-DD Live Event v3.EMAIL-Invitation", "campaign_run_id": 92, "step_id": 417, "choice_number": 0}, "emitted_at": 1674503692856} +{"stream": "activities_send_email", "data": {"marketoGUID": "2250", "leadId": 99, "activityDate": "2023-01-22T11:57:56Z", "activityTypeId": 6, "campaignId": 1100, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 95, "step_id": 245, "choice_number": 0}, "emitted_at": 1674503692856} +{"stream": "activities_send_email", "data": {"marketoGUID": "2251", "leadId": 379, "activityDate": "2023-01-22T11:57:56Z", "activityTypeId": 6, "campaignId": 1100, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 95, "step_id": 245, "choice_number": 0}, "emitted_at": 1674503692856} +{"stream": "activities_send_email", "data": {"marketoGUID": "2252", "leadId": 800, "activityDate": "2023-01-22T11:57:56Z", "activityTypeId": 6, "campaignId": 1100, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 95, "step_id": 245, "choice_number": 0}, "emitted_at": 1674503692857} +{"stream": "activities_send_email", "data": {"marketoGUID": "2271", "leadId": 880, "activityDate": "2023-01-23T08:25:26Z", "activityTypeId": 6, "campaignId": 1159, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 112, "step_id": 489, "choice_number": 0}, "emitted_at": 1674503692857} +{"stream": "activities_new_lead", "data": {"marketoGUID": "2108", "leadId": 885, "activityDate": "2023-01-17T11:00:59Z", "activityTypeId": 12, "campaignId": null, "primaryAttributeValueId": "885", "primaryAttributeValue": "Test Person 1 All People", "created_date": "2023-01-17", "source_type": "New lead"}, "emitted_at": 1674503945149} +{"stream": "activities_new_lead", "data": {"marketoGUID": "2130", "leadId": 888, "activityDate": "2023-01-17T12:29:39Z", "activityTypeId": 12, "campaignId": null, "primaryAttributeValueId": "888", "primaryAttributeValue": "[Sample]Name Surname", "form_name": "API Test Program.123.airbyte", "created_date": "2023-01-17", "source_type": "Web form fillout"}, "emitted_at": 1674503945150} +{"stream": "activities_new_lead", "data": {"marketoGUID": "2134", "leadId": 889, "activityDate": "2023-01-17T12:30:09Z", "activityTypeId": 12, "campaignId": null, "primaryAttributeValueId": "889", "primaryAttributeValue": "[Sample] sample", "form_name": "API Test Program.123.airbyte", "created_date": "2023-01-17", "source_type": "Web form fillout"}, "emitted_at": 1674503945151} +{"stream": "activities_new_lead", "data": {"marketoGUID": "2142", "leadId": 890, "activityDate": "2023-01-19T15:07:51Z", "activityTypeId": 12, "campaignId": null, "primaryAttributeValueId": "890", "primaryAttributeValue": "Test Person 10 Test 10", "created_date": "2023-01-19", "source_type": "New lead"}, "emitted_at": 1674503945151} +{"stream": "activities_new_lead", "data": {"marketoGUID": "2147", "leadId": 891, "activityDate": "2023-01-19T15:25:17Z", "activityTypeId": 12, "campaignId": null, "primaryAttributeValueId": "891", "primaryAttributeValue": "Name11 Surname11", "created_date": "2023-01-19", "source_type": "New lead"}, "emitted_at": 1674503945152} +{"stream": "activities_new_lead", "data": {"marketoGUID": "2192", "leadId": 895, "activityDate": "2023-01-20T11:56:00Z", "activityTypeId": 12, "campaignId": null, "primaryAttributeValueId": "895", "primaryAttributeValue": "Test 2", "created_date": "2023-01-20", "source_type": "New lead"}, "emitted_at": 1674503945152} +{"stream": "activities_new_lead", "data": {"marketoGUID": "2263", "leadId": 897, "activityDate": "2023-01-23T08:09:56Z", "activityTypeId": 12, "campaignId": null, "primaryAttributeValueId": "897", "primaryAttributeValue": "Test test", "created_date": "2023-01-23", "source_type": "New lead"}, "emitted_at": 1674503945153} +{"stream": "activities_new_lead", "data": {"marketoGUID": "2265", "leadId": 898, "activityDate": "2023-01-23T08:20:01Z", "activityTypeId": 12, "campaignId": null, "primaryAttributeValueId": "898", "primaryAttributeValue": "Person 1 Person 1", "created_date": "2023-01-23", "source_type": "New lead"}, "emitted_at": 1674503945153} +{"stream": "activities_unsubscribe_email", "data": {"marketoGUID": "2201", "leadId": 864, "activityDate": "2023-01-20T12:40:36Z", "activityTypeId": 9, "campaignId": null, "primaryAttributeValueId": "1010", "primaryAttributeValue": "My Email Program - RF.Test Email 1", "webform_id": 1, "client_ip_address": "85.209.47.207", "form_fields": "a:20:{s:6:\"module\";s:11:\"leadCapture\";s:6:\"action\";s:5:\"save2\";s:5:\"Email\";s:27:\"integration-test@airbyte.io\";s:12:\"Unsubscribed\";s:3:\"Yes\";s:6:\"formid\";s:1:\"1\";s:4:\"lpId\";s:1:\"1\";s:5:\"subId\";s:3:\"154\";s:10:\"munchkinId\";s:11:\"602-EUO-598\";s:5:\"lpurl\";s:93:\"http://602-EUO-598.mktoweb.com/lp/602-EUO-598/UnsubscribePage.html?cr={creative}&kw={keyword}\";s:12:\"followupLpId\";s:1:\"2\";s:2:\"cr\";s:0:\"\";s:2:\"kw\";s:0:\"\";s:1:\"q\";s:0:\"\";s:8:\"_mkt_trk\";s:57:\"id:602-EUO-598&token:_mch-mktoweb.com-1674218381862-27778\";s:7:\"formVid\";s:1:\"1\";s:7:\"mkt_tok\";s:102:\"NjAyLUVVTy01OTgAAAGJbdICA9DCAo37JqD5ozxyzAlhl8ryjBs-YDMZdHsGTFeOe-C6dFcD19gwXxmu7jXj3HO-IA2VTSiA7upNlg\";s:13:\"_mktoReferrer\";s:197:\"http://602-euo-598.mktoweb.com/lp/datalineaedev/UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGJbdICA9DCAo37JqD5ozxyzAlhl8ryjBs-YDMZdHsGTFeOe-C6dFcD19gwXxmu7jXj3HO-IA2VTSiA7upNlg\";s:14:\"checksumFields\";s:113:\"Email,Unsubscribed,formid,lpId,subId,munchkinId,lpurl,followupLpId,cr,kw,q,_mkt_trk,formVid,mkt_tok,_mktoReferrer\";s:8:\"checksum\";s:64:\"b959482d2aff7c190b46cc567e79fce9c99a6342fbe1eb3fd863ec9a6ac1159a\";s:25:\"formServiceRequestId31337\";s:16:\"7e0e#185cf31f199\";}", "webpage_id": 1, "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0", "query_parameters": "mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGJbdICA9DCAo37JqD5ozxyzAlhl8ryjBs-YDMZdHsGTFeOe-C6dFcD19gwXxmu7jXj3HO-IA2VTSiA7upNlg", "referrer_url": "http://602-euo-598.mktoweb.com/lp/datalineaedev/UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGJbdICA9DCAo37JqD5ozxyzAlhl8ryjBs-YDMZdHsGTFeOe-C6dFcD19gwXxmu7jXj3HO-IA2VTSiA7upNlg"}, "emitted_at": 1674504197171} +{"stream": "activities_email_delivered", "data": {"marketoGUID": "2113", "leadId": 100, "activityDate": "2023-01-17T11:07:30Z", "activityTypeId": 7, "campaignId": 1060, "primaryAttributeValueId": "1005", "primaryAttributeValue": "API Test Program.123.123", "campaign_run_id": 22, "step_id": 90, "choice_number": 98}, "emitted_at": 1674504324745} +{"stream": "activities_email_delivered", "data": {"marketoGUID": "2186", "leadId": 109, "activityDate": "2023-01-20T11:45:58Z", "activityTypeId": 7, "campaignId": 1109, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 66, "step_id": 305, "choice_number": 407}, "emitted_at": 1674504324746} +{"stream": "activities_email_delivered", "data": {"marketoGUID": "2208", "leadId": 876, "activityDate": "2023-01-20T12:49:29Z", "activityTypeId": 7, "campaignId": 1126, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 86, "step_id": 364, "choice_number": 470}, "emitted_at": 1674504324746} +{"stream": "activities_fill_out_form", "data": {"marketoGUID": "2129", "leadId": 864, "activityDate": "2023-01-17T11:29:43Z", "activityTypeId": 2, "campaignId": null, "primaryAttributeValueId": "1006", "primaryAttributeValue": "API Test Program.123.airbyte", "form_fields": "a:19:{s:6:\"module\";s:11:\"leadCapture\";s:6:\"action\";s:5:\"save2\";s:9:\"FirstName\";s:7:\"Segment\";s:8:\"LastName\";s:1:\"5\";s:5:\"Email\";s:27:\"integration-test@airbyte.io\";s:6:\"formid\";s:4:\"1006\";s:4:\"lpId\";s:4:\"1005\";s:5:\"subId\";s:3:\"154\";s:10:\"munchkinId\";s:11:\"602-EUO-598\";s:5:\"lpurl\";s:92:\"http://602-EUO-598.mktoweb.com/lp/602-EUO-598/Landing-Page-1.html?cr={creative}&kw={keyword}\";s:2:\"cr\";s:0:\"\";s:2:\"kw\";s:0:\"\";s:1:\"q\";s:0:\"\";s:8:\"_mkt_trk\";s:57:\"id:602-EUO-598&token:_mch-mktoweb.com-1673954921699-88079\";s:7:\"formVid\";s:4:\"1006\";s:13:\"_mktoReferrer\";s:66:\"https://602-euo-598.mktoweb.com/lp/602-EUO-598/Landing-Page-1.html\";s:14:\"checksumFields\";s:98:\"FirstName,LastName,Email,formid,lpId,subId,munchkinId,lpurl,cr,kw,q,_mkt_trk,formVid,_mktoReferrer\";s:8:\"checksum\";s:64:\"774b4fee27ce1a145370b5ffebe8f4e300c1404cfd86a2067763c65b063d1b66\";s:25:\"formServiceRequestId31337\";s:17:\"17915#185bf7ded1f\";}", "client_ip_address": "85.209.47.207", "webpage_id": 10, "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.52", "query_parameters": null, "referrer_url": "https://602-euo-598.mktoweb.com/lp/602-EUO-598/Landing-Page-1.html"}, "emitted_at": 1674504450336} +{"stream": "activities_fill_out_form", "data": {"marketoGUID": "2131", "leadId": 888, "activityDate": "2023-01-17T12:29:40Z", "activityTypeId": 2, "campaignId": null, "primaryAttributeValueId": "1006", "primaryAttributeValue": "API Test Program.123.airbyte", "form_fields": "a:19:{s:6:\"module\";s:11:\"leadCapture\";s:6:\"action\";s:5:\"save2\";s:9:\"FirstName\";s:12:\"[Sample]Name\";s:8:\"LastName\";s:7:\"Surname\";s:5:\"Email\";s:25:\"iryna.grankova@airbyte.io\";s:6:\"formid\";s:4:\"1006\";s:4:\"lpId\";s:4:\"1007\";s:5:\"subId\";s:3:\"154\";s:10:\"munchkinId\";s:11:\"602-EUO-598\";s:5:\"lpurl\";s:92:\"http://602-EUO-598.mktoweb.com/lp/602-EUO-598/Landing-Page-2.html?cr={creative}&kw={keyword}\";s:2:\"cr\";s:0:\"\";s:2:\"kw\";s:0:\"\";s:1:\"q\";s:0:\"\";s:8:\"_mkt_trk\";s:57:\"id:602-EUO-598&token:_mch-mktoweb.com-1673954921699-88079\";s:7:\"formVid\";s:4:\"1006\";s:13:\"_mktoReferrer\";s:65:\"http://602-euo-598.mktoweb.com/lp/602-EUO-598/Landing-Page-2.html\";s:14:\"checksumFields\";s:98:\"FirstName,LastName,Email,formid,lpId,subId,munchkinId,lpurl,cr,kw,q,_mkt_trk,formVid,_mktoReferrer\";s:8:\"checksum\";s:64:\"31c81f3245d5080d0bb93a07f67ae67a0c4667adcce1400cee8857206f656981\";s:25:\"formServiceRequestId31337\";s:17:\"161b7#185bfb4d8a8\";}", "client_ip_address": "85.209.47.207", "webpage_id": 11, "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.52", "query_parameters": null, "referrer_url": "http://602-euo-598.mktoweb.com/lp/602-EUO-598/Landing-Page-2.html"}, "emitted_at": 1674504450337} +{"stream": "activities_fill_out_form", "data": {"marketoGUID": "2135", "leadId": 889, "activityDate": "2023-01-17T12:30:10Z", "activityTypeId": 2, "campaignId": null, "primaryAttributeValueId": "1006", "primaryAttributeValue": "API Test Program.123.airbyte", "form_fields": "a:19:{s:6:\"module\";s:11:\"leadCapture\";s:6:\"action\";s:5:\"save2\";s:9:\"FirstName\";s:8:\"[Sample]\";s:8:\"LastName\";s:6:\"sample\";s:5:\"Email\";s:30:\"iryna.grankova@globallogic.com\";s:6:\"formid\";s:4:\"1006\";s:4:\"lpId\";s:4:\"1009\";s:5:\"subId\";s:3:\"154\";s:10:\"munchkinId\";s:11:\"602-EUO-598\";s:5:\"lpurl\";s:92:\"http://602-EUO-598.mktoweb.com/lp/602-EUO-598/Landing-Page-3.html?cr={creative}&kw={keyword}\";s:2:\"cr\";s:0:\"\";s:2:\"kw\";s:0:\"\";s:1:\"q\";s:0:\"\";s:8:\"_mkt_trk\";s:57:\"id:602-EUO-598&token:_mch-mktoweb.com-1673954921699-88079\";s:7:\"formVid\";s:4:\"1006\";s:13:\"_mktoReferrer\";s:65:\"http://602-euo-598.mktoweb.com/lp/602-EUO-598/Landing-Page-3.html\";s:14:\"checksumFields\";s:98:\"FirstName,LastName,Email,formid,lpId,subId,munchkinId,lpurl,cr,kw,q,_mkt_trk,formVid,_mktoReferrer\";s:8:\"checksum\";s:64:\"c7f8c6af1167c273c27bc3b441b5be79672d5a6d61f66398eba04782ca972195\";s:25:\"formServiceRequestId31337\";s:17:\"16fe4#185bfb55182\";}", "client_ip_address": "85.209.47.207", "webpage_id": 12, "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.52", "query_parameters": null, "referrer_url": "http://602-euo-598.mktoweb.com/lp/602-EUO-598/Landing-Page-3.html"}, "emitted_at": 1674504450338} +{"stream": "activities_fill_out_form", "data": {"marketoGUID": "2198", "leadId": 864, "activityDate": "2023-01-20T12:40:36Z", "activityTypeId": 2, "campaignId": null, "primaryAttributeValueId": "1", "primaryAttributeValue": "Email Unsubscribe Form", "form_fields": "a:20:{s:6:\"module\";s:11:\"leadCapture\";s:6:\"action\";s:5:\"save2\";s:5:\"Email\";s:27:\"integration-test@airbyte.io\";s:12:\"Unsubscribed\";s:3:\"Yes\";s:6:\"formid\";s:1:\"1\";s:4:\"lpId\";s:1:\"1\";s:5:\"subId\";s:3:\"154\";s:10:\"munchkinId\";s:11:\"602-EUO-598\";s:5:\"lpurl\";s:93:\"http://602-EUO-598.mktoweb.com/lp/602-EUO-598/UnsubscribePage.html?cr={creative}&kw={keyword}\";s:12:\"followupLpId\";s:1:\"2\";s:2:\"cr\";s:0:\"\";s:2:\"kw\";s:0:\"\";s:1:\"q\";s:0:\"\";s:8:\"_mkt_trk\";s:57:\"id:602-EUO-598&token:_mch-mktoweb.com-1674218381862-27778\";s:7:\"formVid\";s:1:\"1\";s:7:\"mkt_tok\";s:102:\"NjAyLUVVTy01OTgAAAGJbdICA9DCAo37JqD5ozxyzAlhl8ryjBs-YDMZdHsGTFeOe-C6dFcD19gwXxmu7jXj3HO-IA2VTSiA7upNlg\";s:13:\"_mktoReferrer\";s:197:\"http://602-euo-598.mktoweb.com/lp/datalineaedev/UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGJbdICA9DCAo37JqD5ozxyzAlhl8ryjBs-YDMZdHsGTFeOe-C6dFcD19gwXxmu7jXj3HO-IA2VTSiA7upNlg\";s:14:\"checksumFields\";s:113:\"Email,Unsubscribed,formid,lpId,subId,munchkinId,lpurl,followupLpId,cr,kw,q,_mkt_trk,formVid,mkt_tok,_mktoReferrer\";s:8:\"checksum\";s:64:\"b959482d2aff7c190b46cc567e79fce9c99a6342fbe1eb3fd863ec9a6ac1159a\";s:25:\"formServiceRequestId31337\";s:16:\"7e0e#185cf31f199\";}", "client_ip_address": "85.209.47.207", "webpage_id": 1, "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0", "query_parameters": "mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGJbdICA9DCAo37JqD5ozxyzAlhl8ryjBs-YDMZdHsGTFeOe-C6dFcD19gwXxmu7jXj3HO-IA2VTSiA7upNlg", "referrer_url": "http://602-euo-598.mktoweb.com/lp/datalineaedev/UnsubscribePage.html?mkt_unsubscribe=1&mkt_tok=NjAyLUVVTy01OTgAAAGJbdICA9DCAo37JqD5ozxyzAlhl8ryjBs-YDMZdHsGTFeOe-C6dFcD19gwXxmu7jXj3HO-IA2VTSiA7upNlg"}, "emitted_at": 1674504450339} +{"stream": "activities_change_nurture_cadence", "data": {"marketoGUID": "2170", "leadId": 99, "activityDate": "2023-01-20T09:57:53Z", "activityTypeId": 115, "campaignId": 1102, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "new_nurture_cadence": "Norm"}, "emitted_at": 1674504578130} +{"stream": "activities_change_nurture_cadence", "data": {"marketoGUID": "2173", "leadId": 800, "activityDate": "2023-01-20T09:59:53Z", "activityTypeId": 115, "campaignId": 1103, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "new_nurture_cadence": "Norm"}, "emitted_at": 1674504578130} +{"stream": "activities_change_nurture_cadence", "data": {"marketoGUID": "2190", "leadId": 105, "activityDate": "2023-01-20T11:53:23Z", "activityTypeId": 115, "campaignId": 1112, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "new_nurture_cadence": "Norm"}, "emitted_at": 1674504578131} +{"stream": "activities_change_nurture_cadence", "data": {"marketoGUID": "2203", "leadId": 876, "activityDate": "2023-01-20T12:48:53Z", "activityTypeId": 115, "campaignId": 1125, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "new_nurture_cadence": "Norm"}, "emitted_at": 1674504578132} +{"stream": "activities_change_nurture_cadence", "data": {"marketoGUID": "2219", "leadId": 379, "activityDate": "2023-01-20T13:00:24Z", "activityTypeId": 115, "campaignId": 1127, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "new_nurture_cadence": "Norm"}, "emitted_at": 1674504578132} +{"stream": "activities_change_nurture_cadence", "data": {"marketoGUID": "2262", "leadId": 99, "activityDate": "2023-01-23T08:08:21Z", "activityTypeId": 115, "campaignId": 1152, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "new_nurture_cadence": "Norm", "previous_nurture_cadence": "Norm"}, "emitted_at": 1674504578132} +{"stream": "activities_change_nurture_cadence", "data": {"marketoGUID": "2268", "leadId": 880, "activityDate": "2023-01-23T08:24:51Z", "activityTypeId": 115, "campaignId": 1158, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "new_nurture_cadence": "Norm"}, "emitted_at": 1674504578133} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2110", "leadId": 100, "activityDate": "2023-01-17T11:07:23Z", "activityTypeId": 24, "campaignId": 1059, "primaryAttributeValueId": "1002", "primaryAttributeValue": "Test list number 1", "source": "Marketo Flow Action"}, "emitted_at": 1674504705777} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2111", "leadId": 100, "activityDate": "2023-01-17T11:07:24Z", "activityTypeId": 24, "campaignId": 1058, "primaryAttributeValueId": "1001", "primaryAttributeValue": "Test list", "source": "Marketo Flow Action"}, "emitted_at": 1674504705777} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2116", "leadId": 140, "activityDate": "2023-01-17T11:08:53Z", "activityTypeId": 24, "campaignId": 1063, "primaryAttributeValueId": "1004", "primaryAttributeValue": "Test list number 3", "source": "Marketo Flow Action"}, "emitted_at": 1674504705778} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2117", "leadId": 140, "activityDate": "2023-01-17T11:08:54Z", "activityTypeId": 24, "campaignId": 1062, "primaryAttributeValueId": "1003", "primaryAttributeValue": "Test list number 2", "source": "Marketo Flow Action"}, "emitted_at": 1674504705779} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2120", "leadId": 807, "activityDate": "2023-01-17T11:25:53Z", "activityTypeId": 24, "campaignId": 1067, "primaryAttributeValueId": "1006", "primaryAttributeValue": "Test list number 5", "source": "Marketo Flow Action"}, "emitted_at": 1674504705780} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2123", "leadId": 816, "activityDate": "2023-01-17T11:26:53Z", "activityTypeId": 24, "campaignId": 1069, "primaryAttributeValueId": "1007", "primaryAttributeValue": "Test list number 6", "source": "Marketo Flow Action"}, "emitted_at": 1674504705780} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2136", "leadId": 100, "activityDate": "2023-01-17T14:14:53Z", "activityTypeId": 24, "campaignId": 1072, "primaryAttributeValueId": "1001", "primaryAttributeValue": "Test list", "source": "Marketo Flow Action"}, "emitted_at": 1674504705780} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2154", "leadId": 105, "activityDate": "2023-01-20T09:32:23Z", "activityTypeId": 24, "campaignId": 1082, "primaryAttributeValueId": "1016", "primaryAttributeValue": "API Test Program.List 1", "source": "Marketo Flow Action"}, "emitted_at": 1674504705780} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2162", "leadId": 110, "activityDate": "2023-01-20T09:45:23Z", "activityTypeId": 24, "campaignId": 1090, "primaryAttributeValueId": "1016", "primaryAttributeValue": "API Test Program.List 1", "source": "Marketo Flow Action"}, "emitted_at": 1674504705781} +{"stream": "activities_addto_list", "data": {"marketoGUID": "2163", "leadId": 112, "activityDate": "2023-01-20T09:45:53Z", "activityTypeId": 24, "campaignId": 1091, "primaryAttributeValueId": "1016", "primaryAttributeValue": "API Test Program.List 1", "source": "Marketo Flow Action"}, "emitted_at": 1674504705781} +{"stream": "activities_change_score", "data": {"marketoGUID": "2118", "leadId": 140, "activityDate": "2023-01-17T11:09:23Z", "activityTypeId": 22, "campaignId": 1064, "primaryAttributeValueId": "146", "primaryAttributeValue": "Lead Score", "change_value": "+10", "old_value": null, "new_value": 10, "reason": "Changed by Smart Campaign Run Action Change Score 2023-01-17 03:09:02 am action Change Score"}, "emitted_at": 1674504831488} +{"stream": "activities_change_score", "data": {"marketoGUID": "2209", "leadId": 143, "activityDate": "2023-01-20T12:55:59Z", "activityTypeId": 22, "campaignId": null, "primaryAttributeValueId": "146", "primaryAttributeValue": "Lead Score", "change_value": "+20", "old_value": null, "new_value": 20, "reason": "Manual person edit"}, "emitted_at": 1674504831489} +{"stream": "activities_change_score", "data": {"marketoGUID": "2211", "leadId": 362, "activityDate": "2023-01-20T12:56:46Z", "activityTypeId": 22, "campaignId": null, "primaryAttributeValueId": "146", "primaryAttributeValue": "Lead Score", "change_value": "+100", "old_value": null, "new_value": 100, "reason": "Manual person edit"}, "emitted_at": 1674504831489} +{"stream": "activities_send_alert", "data": {"marketoGUID": "2179", "leadId": 109, "activityDate": "2023-01-20T11:39:27Z", "activityTypeId": 38, "campaignId": 1107, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "send_to_owner": "Lead Owner", "send_to_list": "integration-tgest@airbyte.io"}, "emitted_at": 1674504958506} +{"stream": "activities_request_campaign", "data": {"marketoGUID": "2193", "leadId": 104, "activityDate": "2023-01-20T12:01:23Z", "activityTypeId": 47, "campaignId": 1113, "primaryAttributeValueId": "1056", "primaryAttributeValue": "Test Campaign 5", "source": "Marketo Flow Action"}, "emitted_at": 1674505085181} +{"stream": "activities_change_program_member_data", "data": {"marketoGUID": "2188", "leadId": 105, "activityDate": "2023-01-20T11:52:53Z", "activityTypeId": 123, "campaignId": 1111, "primaryAttributeValueId": "1013", "primaryAttributeValue": "API Test Program 10", "source": "Marketo Flow Action"}, "emitted_at": 1674505718994} +{"stream": "activities_change_program_member_data", "data": {"marketoGUID": "2228", "leadId": 110, "activityDate": "2023-01-20T16:04:24Z", "activityTypeId": 123, "campaignId": 1136, "primaryAttributeValueId": "1004", "primaryAttributeValue": "API Test Program 1", "source": "Marketo Flow Action"}, "emitted_at": 1674505718995} +{"stream": "activities_change_program_member_data", "data": {"marketoGUID": "2229", "leadId": 99, "activityDate": "2023-01-20T16:05:23Z", "activityTypeId": 123, "campaignId": 1137, "primaryAttributeValueId": "1004", "primaryAttributeValue": "API Test Program 1", "source": "Marketo Flow Action"}, "emitted_at": 1674505718996} +{"stream": "activities_change_program_member_data", "data": {"marketoGUID": "2242", "leadId": 800, "activityDate": "2023-01-20T16:28:53Z", "activityTypeId": 123, "campaignId": 1140, "primaryAttributeValueId": "1004", "primaryAttributeValue": "API Test Program 1", "source": "Marketo Flow Action"}, "emitted_at": 1674505718997} +{"stream": "activities_change_nurture_track", "data": {"marketoGUID": "2205", "leadId": 876, "activityDate": "2023-01-20T12:48:53Z", "activityTypeId": 114, "campaignId": 1125, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "track_name": "Stream 1", "new_track_id": 1}, "emitted_at": 1674505971176} +{"stream": "activities_change_nurture_track", "data": {"marketoGUID": "2260", "leadId": 99, "activityDate": "2023-01-23T08:07:22Z", "activityTypeId": 114, "campaignId": 1150, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "previous_track_id": 1, "previous_track_name": "Stream 1", "track_name": "Stream 2", "new_track_id": 2}, "emitted_at": 1674505971177} +{"stream": "activities_change_nurture_track", "data": {"marketoGUID": "2270", "leadId": 880, "activityDate": "2023-01-23T08:24:52Z", "activityTypeId": 114, "campaignId": 1158, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "track_name": "Stream 1", "new_track_id": 1}, "emitted_at": 1674505971178} +{"stream": "activities_change_nurture_track", "data": {"marketoGUID": "2276", "leadId": 880, "activityDate": "2023-01-23T08:26:21Z", "activityTypeId": 114, "campaignId": 1158, "primaryAttributeValueId": "1025", "primaryAttributeValue": "Test Nurture", "previous_track_id": 1, "previous_track_name": "Stream 1", "track_name": "Stream 1", "new_track_id": 1}, "emitted_at": 1674505971178} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2109", "leadId": 100, "activityDate": "2023-01-17T11:06:30Z", "activityTypeId": 13, "campaignId": null, "primaryAttributeValueId": "50", "primaryAttributeValue": "Is Customer", "old_value": "False", "new_value": "True", "reason": "Manual person edit", "source": "Lead update"}, "emitted_at": 1674506223417} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2115", "leadId": 140, "activityDate": "2023-01-17T11:08:10Z", "activityTypeId": 13, "campaignId": null, "primaryAttributeValueId": "48", "primaryAttributeValue": "Is Partner", "old_value": "False", "new_value": "True", "reason": "Manual person edit", "source": "Lead update"}, "emitted_at": 1674506223418} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2119", "leadId": 140, "activityDate": "2023-01-17T11:09:23Z", "activityTypeId": 13, "campaignId": 1064, "primaryAttributeValueId": "146", "primaryAttributeValue": "Lead Score", "old_value": null, "new_value": "10", "reason": "Changed by Smart Campaign Run Action Change Score 2023-01-17 03:09:02 am action Change Score", "source": "Marketo Flow Action"}, "emitted_at": 1674506223419} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2127", "leadId": 864, "activityDate": "2023-01-17T11:29:43Z", "activityTypeId": 13, "campaignId": null, "primaryAttributeValueId": "53", "primaryAttributeValue": "First Name", "old_value": "yuriiyurii", "new_value": "Segment", "reason": "Form fill-out, URL: ", "source": "Web form fillout"}, "emitted_at": 1674506223420} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2128", "leadId": 864, "activityDate": "2023-01-17T11:29:43Z", "activityTypeId": 13, "campaignId": null, "primaryAttributeValueId": "55", "primaryAttributeValue": "Last Name", "old_value": null, "new_value": "5", "reason": "Form fill-out, URL: ", "source": "Web form fillout"}, "emitted_at": 1674506223421} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2139", "leadId": 23, "activityDate": "2023-01-19T14:46:54Z", "activityTypeId": 13, "campaignId": 1074, "primaryAttributeValueId": "50", "primaryAttributeValue": "Is Customer", "old_value": "False", "new_value": "True", "reason": "Changed by Smart Campaign Run Action Change Data Value 2023-01-19 06:46:35 am action Change Data Value", "source": "Marketo Flow Action"}, "emitted_at": 1674506223422} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2140", "leadId": 23, "activityDate": "2023-01-19T14:47:27Z", "activityTypeId": 13, "campaignId": null, "primaryAttributeValueId": "602", "primaryAttributeValue": "Acquisition Date", "old_value": null, "new_value": "2023-01-26 18:46:00", "reason": "Manual person edit", "source": "Lead update"}, "emitted_at": 1674506223423} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2143", "leadId": 862, "activityDate": "2023-01-19T15:18:39Z", "activityTypeId": 13, "campaignId": null, "primaryAttributeValueId": "66", "primaryAttributeValue": "Country", "old_value": null, "new_value": "US", "reason": "Manual person edit", "source": "Lead update"}, "emitted_at": 1674506223424} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2144", "leadId": 862, "activityDate": "2023-01-19T15:18:44Z", "activityTypeId": 13, "campaignId": 1001, "primaryAttributeValueId": "68", "primaryAttributeValue": "Person Time Zone", "old_value": null, "new_value": "America/Chicago", "reason": "Changed by Smart Campaign Calculate Timezone action Change Data Value", "source": "Marketo Flow Action"}, "emitted_at": 1674506223424} +{"stream": "activities_change_data_value", "data": {"marketoGUID": "2145", "leadId": 890, "activityDate": "2023-01-19T15:20:29Z", "activityTypeId": 13, "campaignId": null, "primaryAttributeValueId": "66", "primaryAttributeValue": "Country", "old_value": null, "new_value": "US", "reason": "Manual person edit", "source": "Lead update"}, "emitted_at": 1674506223425} +{"stream": "activities_delete_lead", "data": {"marketoGUID": "2278", "leadId": 851, "activityDate": "2023-01-23T08:36:22Z", "activityTypeId": 37, "campaignId": 1162, "primaryAttributeValueId": "851", "primaryAttributeValue": "Kataldar-72"}, "emitted_at": 1674506602583} +{"stream": "activities_delete_lead", "data": {"marketoGUID": "2279", "leadId": 850, "activityDate": "2023-01-23T08:36:22Z", "activityTypeId": 37, "campaignId": 1162, "primaryAttributeValueId": "850", "primaryAttributeValue": "Kataldar-71"}, "emitted_at": 1674506602584} +{"stream": "activities_delete_lead", "data": {"marketoGUID": "2280", "leadId": 849, "activityDate": "2023-01-23T08:36:22Z", "activityTypeId": 37, "campaignId": 1162, "primaryAttributeValueId": "849", "primaryAttributeValue": "Kataldar-70"}, "emitted_at": 1674506602584} +{"stream": "activities_delete_lead", "data": {"marketoGUID": "2281", "leadId": 852, "activityDate": "2023-01-23T08:36:22Z", "activityTypeId": 37, "campaignId": 1162, "primaryAttributeValueId": "852", "primaryAttributeValue": "Kataldar-74"}, "emitted_at": 1674506602585} +{"stream": "activities_email_bounced", "data": {"marketoGUID": "2273", "leadId": 880, "activityDate": "2023-01-23T08:25:26Z", "activityTypeId": 8, "campaignId": 1159, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 112, "category": "2", "email": "alastor@moody.com", "details": "550 5.4.1 Recipient address rejected: Access denied. AS(201806281) [SN1NAM02FT0043.eop-nam02.prod.protection.outlook.com]", "subcategory": "2003", "step_id": 489, "choice_number": 623}, "emitted_at": 1674507111307} +{"stream": "activities_click_email", "data": {"marketoGUID": "2213", "leadId": 876, "activityDate": "2023-01-20T12:57:10Z", "activityTypeId": 11, "campaignId": 1126, "primaryAttributeValueId": "1009", "primaryAttributeValue": "Test Nurture.integration-tgest@airbyte.io", "campaign_run_id": 86, "platform": "Win7", "is_mobile_device": false, "step_id": 364, "device": "Windows Desktop", "choice_number": 470, "is_bot_activity": false, "user_agent": "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)", "bot_activity_pattern": "N/A", "link": "http://mylink"}, "emitted_at": 1674507619162} +{"stream": "activities_execute_campaign", "data": {"marketoGUID": "2178", "leadId": 105, "activityDate": "2023-01-20T11:36:54Z", "activityTypeId": 155, "campaignId": 1106, "primaryAttributeValueId": "1105", "primaryAttributeValue": "Test Campaign 10", "used_parent_campaign_token_context": false, "qualified": false}, "emitted_at": 1674507997892} diff --git a/airbyte-integrations/connectors/source-marketo/integration_tests/incremental_catalog.json b/airbyte-integrations/connectors/source-marketo/integration_tests/incremental_catalog.json index 9a569ed6353a..921e21f77444 100644 --- a/airbyte-integrations/connectors/source-marketo/integration_tests/incremental_catalog.json +++ b/airbyte-integrations/connectors/source-marketo/integration_tests/incremental_catalog.json @@ -4,56 +4,70 @@ "stream": { "name": "programs", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh", "incremental"], "source_defined_cursor": true, - "default_cursor_field": [] + "default_cursor_field": ["updatedAt"], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["updatedAt"], + "primary_key": [["id"]] }, { "stream": { "name": "campaigns", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh", "incremental"], "source_defined_cursor": true, - "default_cursor_field": [] + "default_cursor_field": ["createdAt"], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["createdAt"], + "primary_key": [["id"]] }, { "stream": { "name": "lists", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh", "incremental"], "source_defined_cursor": true, - "default_cursor_field": [] + "default_cursor_field": ["createdAt"], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["createdAt"], + "primary_key": [["id"]] }, { "stream": { "name": "leads", "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": [] + "supported_sync_modes": ["full_refresh", "incremental"], + "default_cursor_field": ["updatedAt"], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["updatedAt"], + "primary_key": [["id"]] }, { "stream": { "name": "activities_visit_webpage", "json_schema": {}, - "supported_sync_modes": ["incremental"], + "supported_sync_modes": ["full_refresh", "incremental"], "source_defined_cursor": true, - "default_cursor_field": [] + "default_cursor_field": ["activityDate"], + "source_defined_primary_key": [["marketoGUID"]] }, - "sync_mode": "incremental", - "destination_sync_mode": "append" + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["activityDate"], + "primary_key": [["marketoGUID"]] } ] } diff --git a/airbyte-integrations/connectors/source-marketo/source_marketo/source.py b/airbyte-integrations/connectors/source-marketo/source_marketo/source.py index aef902242d43..2fd06f6d4b4e 100644 --- a/airbyte-integrations/connectors/source-marketo/source_marketo/source.py +++ b/airbyte-integrations/connectors/source-marketo/source_marketo/source.py @@ -373,7 +373,9 @@ def get_json_schema(self) -> Mapping[str, Any]: for attr in self.activity["attributes"]: attr_name = clean_string(attr["name"]) - if attr["dataType"] in ["datetime", "date"]: + if attr["dataType"] == "date": + field_schema = {"type": "string", "format": "date"} + elif attr["dataType"] == "datetime": field_schema = {"type": "string", "format": "date-time"} elif attr["dataType"] in ["integer", "percent", "score"]: field_schema = {"type": "integer"} diff --git a/airbyte-integrations/connectors/source-marketo/unit_tests/test_source.py b/airbyte-integrations/connectors/source-marketo/unit_tests/test_source.py index 51768f950d73..0d4690d1bd9b 100644 --- a/airbyte-integrations/connectors/source-marketo/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-marketo/unit_tests/test_source.py @@ -53,7 +53,7 @@ def test_create_export_job(mocker, send_email_stream, caplog): "activityTypeId": {"type": ["null", "integer"]}, "campaignId": {"type": ["null", "integer"]}, "costperperson": {"type": ["number", "null"]}, - "date": {"format": "date-time", "type": ["string", "null"]}, + "date": {"format": "date", "type": ["string", "null"]}, "ismandatory": {"type": ["boolean", "null"]}, "leadId": {"type": ["null", "integer"]}, "marketoGUID": {"type": ["null", "string"]}, diff --git a/docs/integrations/sources/marketo.md b/docs/integrations/sources/marketo.md index 85c544b2497a..975162a7e229 100644 --- a/docs/integrations/sources/marketo.md +++ b/docs/integrations/sources/marketo.md @@ -106,6 +106,7 @@ If the 50,000 limit is too stringent, contact Marketo support for a quota increa | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------| +| `1.0.0` | 2023-01-25 | [21790](https://github.com/airbytehq/airbyte/pull/21790) | Fix `activities_*` stream schemas | | `0.1.11` | 2022-09-30 | [17445](https://github.com/airbytehq/airbyte/pull/17445) | Do not use temporary files for memory optimization | | `0.1.10` | 2022-09-30 | [17445](https://github.com/airbytehq/airbyte/pull/17445) | Optimize memory consumption | | `0.1.9` | 2022-09-28 | [17304](https://github.com/airbytehq/airbyte/pull/17304) | Migrate to per-stream sate. |