#4rlenrey-email-receipts
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
Hey @elfin pike Sorry I don't fully understand what you are describing right now.
First: wht type of connected account(s) do you use: Express, Standard or Custom?
Sorry, I use express accounts
Okay so you use Destination Charges I assume. Are you using on_behalf_of?
Yes
Okay how are you integrating exactly? Like how do you accept payments? Checkout? PaymentElement? Are you using Invoicing or not?
I'm creating a paymentintent like this to pass it to the frontend:
intent = stripe.PaymentIntent.create(
application_fee_amount=int(fee),
transfer_data={"destination": user.stripe_id},
on_behalf_of=user.stripe_id,
automatic_payment_methods={"enabled": True},
currency=currency.code,
amount=price,
)
Okay cool so you mostly accept one-time payments as Destination Charges with on behalf of
Exactly
The closest we can offer are email receiptshttps://stripe.com/docs/receipts?payment-ui=direct-api
4rlenrey-email-receipts
Thank you
Is it possible to somehow send a reciept for all of the fees to the connected account or does stripe not handle that?
No we don't have something like this today sadly. Definitely a common enough feature request but we never built this 😦
Alright, thank you very much. Is it possible tho to querry / retrieve all of the fees from some time interval (For a connected stripe account)? / Retrieve a list of payments from some time interval and then get the fees from there?