#Devi
1 messages · Page 1 of 1 (latest)
Hi there, there's a payment_intent.succeeded event https://stripe.com/docs/api/events/types#event_types-payment_intent.succeeded
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok, which attribute need to refer for stripe processing charges on this intent object?
You can find the charges created by this PaymentIntent in its charges list https://stripe.com/docs/api/payment_intents/object?lang=php#payment_intent_object-charges
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
i cannot see this Fee and Net amount in the payment intent charge list.please help to find this
OK, you are talking about the fee_details
yes
Sure, you can get the first charge from the PaymentIntent's charges list, and expand the balance_transaction (https://stripe.com/docs/api/charges/object?lang=php#charge_object-balance_transaction) of the charge, from there you can find the fee_details (https://stripe.com/docs/api/balance_transactions/object?lang=php#balance_transaction_object-fee_details)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yes, it's in cents, which equals to $1.41.
ok ok goit it. Thanks Jack
The amount that you receive from Stripe API is always in the smallest unit of the currency. But there is an exception with zero-decimal currencies, you can find the list here https://stripe.com/docs/currencies#zero-decimal
ok noted