Skip to main content
Stripe Checkout Custom Integration
Sasha Gerold avatar
Written by Sasha Gerold
Updated over 3 weeks ago

Stripe checkout custom integration (Stripe via API)

If you would like to connect a custom developed Stripe checkout, these would be instructions for your Developer. It essentially replicates the same behavior as all other guides on Stripe integrations, as it sends our CID to the Stripe client_reference_id parameter.


In the Stripe checkout process, you would need to add a parameter client_reference_id when creating a checkout_session. Below is more on this in Stripe documents - https://docs.stripe.com/api/checkout/sessions/create#create_checkout_session-client_reference_id

In this parameter, you will fill in the Trackdesk CID that a user has been assigned to after visiting a tracking URL (which has been processed by the click script).

There are two ways to get this ID, either by looking up the "trakdesk_cid" cookie when creating a checkout session, or by using a callback function that can be added to the click script (the data.cid parameter is passed to the callback function from our end).

Here is an example of how to use the callback function in the click script if you would like to choose this way:

trackdesk("YOUR_TENANT_ID", "click", {}, (data) => {
<!-- content of the callback function can use parameter data.cid -->
});
Did this answer your question?