Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tap_exacttarget/endpoints/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ class EventDataAccessObject(DataAccessObject):
'type': ['null', 'string'],
'description': 'The type of tracking event',
},
'URL': {
'type': ['null','string'],
'description': 'URL that was clicked.'
},

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Assuming you run this tap yourself, when you add this URL to the schema and run the tap, do you see this new data being emitted?

If not, I suspect that we need to add 'URL' to the KEY_PROPERTIES list on line 39.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. I tested this by adding URL to the schema, and it runs without URL being a KEY_PROPERTY.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@luandy64 do I need to add URL to KEY_PROPERTY?

'SubscriberKey': SUBSCRIBER_KEY_FIELD,
})

Expand Down