merchantprotocol / theadslab

The Ads Lab - Development Roadmap - Our platform combines with your customer data and ours to de-anonymize your website traffic. Our platform is being used to identity 30% of anonymous website traffic.
https://app.theadslab.io
7 stars 0 forks source link

Pass parameters through to webhook #62

Open 9mm opened 2 years ago

9mm commented 2 years ago

Feature Brief

I am looking for a set of arbitrary key/value pairs that I can pass into the matomo tag, and it would pass them the entire way through the resolution, and get echoed back in the webhook.

This would allow things to pass my own session_ids (independent of matomo session id) as well as other important metadata that I capture on my own end.

For example, in the matomo tag we might have the following data. Note that these would be arbitrary key names and values that I specify:

{session_id: '12345', metadata_id: '777'}

and then in the webhook you have all your existing params along with &session_id=12345&metadata_id=777

If any key names conflicted with the webhook keys, you would favor the passed in parameters.