#4rlenrey-email-receipts

1 messages · Page 1 of 1 (latest)

ancient orioleBOT
#

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.

primal cedar
#

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?

elfin pike
#

Sorry, I use express accounts

primal cedar
#

Okay so you use Destination Charges I assume. Are you using on_behalf_of?

elfin pike
#

Yes

primal cedar
#

Okay how are you integrating exactly? Like how do you accept payments? Checkout? PaymentElement? Are you using Invoicing or not?

elfin pike
#

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,
    )
primal cedar
#

Okay cool so you mostly accept one-time payments as Destination Charges with on behalf of

elfin pike
#

Exactly

primal cedar
#

4rlenrey-email-receipts

elfin pike
#

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?

primal cedar
#

No we don't have something like this today sadly. Definitely a common enough feature request but we never built this 😦

ancient orioleBOT
elfin pike
#

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?

primal cedar