You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tap-pendo doesn't ingest our custom Account and Visitor metadata fields, also called data mappings. I've tried Stitch and running tap-pendo myself; neither gets our custom metadata. I can get those data mappings with Fivetran or by calling the Pendo API directly with Python.
tap-pendo
doesn't ingest our custom Account and Visitor metadata fields, also called data mappings. I've tried Stitch and runningtap-pendo
myself; neither gets our custom metadata. I can get those data mappings with Fivetran or by calling the Pendo API directly with Python.This is possibly related to #18.
Calling the API directly
Suppose I use this
main.py
script to request all of our Accounts data from Pendo's Accounts endpoint:I run it like this on the terminal (using Python 3.9):
And this is a sample object in the printed response (I cut a few things out):
The
agent
group contains the custom account metadata that we wanttap-pendo
to ingest.Running
tap-pendo
locallyI install
tap-pendo
into a local virtualenv with Python 3.8.13, then run this:Note: I won't include its contents here for the sake of brevity, but in
catalog.json
I settap-pendo
to only ingest Accounts data.Here's
config.json
:Here's what
tap-pendo
outputs for the same account shown in the above "Calling the API directly" example:There is no
agent
group!tap-pendo
skips our custom metadata. (So does Stitch, FWIW.)The text was updated successfully, but these errors were encountered: