#roadkillduke
1 messages · Page 1 of 1 (latest)
hi!
Let me check
thank you!
and if it's not in Sigma, do you know of any report where it might exist? Right now we're having to go into each transaction to manually pull the field, which is tedious and hoping for a better solution
Yeah unfortunately we don't have Checkout Session object data or Payment Link data in Sigma.
I don't think we have it witihn our Reports API either but let me check on that
Yeah overall I'd recommend ingesting this data via webhook into your own database.
You will need to use the API to gather this data from past Checkout Sessions though
I can put in a feature request to get this added to Sigma
I do understand it would be nice to have there
yes please, that would be appreciated
so, the only way to get the data is to use a post transaction webhook and store it on our end, then we can report against it, correct?
You can List Checkout Sessions via the API to get the data: https://stripe.com/docs/api/checkout/sessions/list
But instead of having to do that every time you want it, I'd recommend ingesting it via Webhook as it comes in so that you have it cached already
You will want to list Checkout Sessions to ingest the previous data into your database if you do implement a Webhook handler here to collect it going forward