Creem revenue attribution
Attribute Creem checkout revenue to Kobbe journeys.
Use Creem when your product checkout or payment link is handled by Creem.
Setup
- Enable Creem in Site settings → Integrations → Revenue attribution.
- Copy the Kobbe webhook URL.
- Add it in Creem’s webhook settings.
- Copy the Creem signing secret into Kobbe.
- Pass
kobbe_attribution_idwith the checkout metadata.
Tracker
Enable revenue attribution before a visitor starts checkout:
<script
defer
data-token="YOUR_SITE_TOKEN"
data-revenue-attribution="true"
src="https://app.kobbe.io/tracker.full.js"
></script>
Checkout metadata
Include the attribution ID when creating or redirecting to checkout:
const attributionId =
window.kobbe?.getAttributionId?.() ?? window.kobbe?.attributionId;
const metadata = attributionId ? { kobbe_attribution_id: attributionId } : {};
Webhook
Creem signs webhook requests with the creem-signature header. Kobbe verifies the signature and then looks for the attribution metadata on the payment event.