#adit_deepak-reporting
1 messages · Page 1 of 1 (latest)
hi! how are you looking to get that information exactly? Do you have developers comfortable working with the Stripe API?
through API.
have you built anything yet or looked at anything so far?
at a basic level you could list charges on the connected account (https://stripe.com/docs/api/charges/list + https://stripe.com/docs/connect/authentication)
and then look at the payment_method_details hash as it has a lot of the information you mentioned.
but generally I'd recommend using our reporting tools instead of building this entirely custom (https://stripe.com/docs/reports)
Yes, I am getting data in Zoho Analytics using API. But that data is combination of our 2 services one is subscription service the other is our Adit Pay service. but I want to get bifurcated data of Adit pay.
Your reporting tool is not enough to create the report that we want.
ok! anything else specific I can help with?
going to delete your screenshots since this a public server and there is private information there
Ya I know but I share so that you can get what my query is.
you have a Stripe contact so I'd suggest reaching out to them if needed!
if you have specific one off questions about using the API then I can try to help you here.
if you feel you need a level of support beyond this, you should talk to your contact about that.
Okay, I need the following data through API. can you help me with that?
I want to know the way to get Connect accounts specific data.
- 3d secure transaction data
- Terminal (Hardware Device) transaction
- The bifurcation of online/offline transaction
- Connect specific payouts"
Only connect accounts.
3d secure transaction data
https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-card-three_d_secure contains details on how/if 3D Secure ran on a given charge.
Terminal (Hardware Device) transaction
what does that mean?
The bifurcation of online/offline transaction
what is an "offline transaction"?
Connect specific payouts
https://stripe.com/docs/expand/use-cases#charges-in-payout has a specific example of how to reconcile payouts on Connect accounts
I am talking about these terminal devices. and I need the information on transactions that happen on or using these terminals.
what information exactly?
if it's what you're asking for, unfortunately the API does not mark anywhere which reader was used to make a specific transaction, so it's not possible to get that unless you're storing it yourself in metadata.
Okay so stripe is not storing that information.
you can differentiate Terminal payment from non-Terminal ones by looking at https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-type , card_present is Terminal in-person card payments.
but we don't store the specific details of the reader used unfortunately