#RekhaThakur-connect
1 messages · Page 1 of 1 (latest)
because they are different description, aka description belongs to different object
Are you using Destination Charge?
So a Destination Charge contains 2 transaction, a Payment Intent (pi_xxx object) represent fund move from customer to your Platform, then a "transfer" (normally a "py_xxx" object) represent the portion of fund from your platform to your Connected Account
Using webhook you can find the py_ object from the pi_object
Inside PaymentIntent, find the Charge, then find the Transfer, then find Destination Payment
https://stripe.com/docs/api/payment_intents/object#payment_intent_object-charges
https://stripe.com/docs/api/charges/object#charge_object-transfer
https://stripe.com/docs/api/transfers/object#transfer_object-destination_payment
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.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Then you can link them in and set the description for the Destination Payment (py object)
But the payment amount and other things are already coming but only the description has an issue in it.
Yes, because the py_ object and the pi_ object are separated, they happen to have the same amount and other things, but not sharing the description