#qmathe
1 messages · Page 1 of 1 (latest)
Yes, I plan to have an application_fee_amount and not set on_behalf_of in payment intents.
then you need to look at transfers https://stripe.com/docs/api/transfers/list#list_transfers-destination
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Are transfers going to map one-to-one to payments if collected payments for a connected account are only paid out once per day?
yes transfers are mapped to a payment
ok, perfect then, I'm going to try this. Thanks a lot 👍
I'm looking at Transfer object… Is Transfer.amount going to be equal to PaymentIntent.amount - PaymentIntent.application_fee_amount in my case?
no the transfer amount would be the amount transferred to the destination
ok, good to know. Thanks!