From fb5b7805898ff6b3a588899cb234b554c05e1607 Mon Sep 17 00:00:00 2001 From: jkarage Date: Thu, 4 Sep 2025 13:02:46 +0300 Subject: [PATCH] feat: Add drift Integration sample --- drift/amp.yaml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 drift/amp.yaml diff --git a/drift/amp.yaml b/drift/amp.yaml new file mode 100644 index 0000000..aa13eca --- /dev/null +++ b/drift/amp.yaml @@ -0,0 +1,34 @@ +specVersion: 1.0.0 +integrations: + - name: drift-integration + provider: drift + read: + objects: + # More fields can be seen here + # https://devdocs.drift.com/docs/get-playbooks + - objectName: playbooks + destination: driftWebhook + schedule: "*/10 * * * *" # every 10 minutes + requiredFields: + - fieldName: id + - fieldName: name + - fieldName: orgId + - fieldName: reportType + optionalFields: + - fieldName: meta + + # More fields can be seen here + # https://devdocs.drift.com/docs/list-conversations + - objectName: conversations + destination: driftWebhook + schedule: "*/10 * * * *" # every 10 minutes + requiredFields: + - fieldName: id + - fieldName: participants + - fieldName: status + - fieldName: contactId + optionalFieldsAuto: all + + write: + objects: + - objectName: contacts