#chidiprime

1 messages · Page 1 of 1 (latest)

tribal rootBOT
vernal flume
#

Hi! Let me help you with this.

#

Are you talking about Issuing?

#

Or refunds?

tight vine
#

I'm trying to refund the customer from my platform balance

vernal flume
#

You can only refund a specific Charge.

tight vine
#

var options = new RefundCreateOptions
{
PaymentIntent = "pi_Aabcxyz01aDfoo",
Amount = 1000,
};

#

seeing that from the documentation...

#

Can you explain the payment intent there ?

vernal flume
#

PaymentIntent is an object that holds information about a specific payment.
If a customer paid you $5 for a service, this event will have a PaymentIntent. If you want to refund them, you will have to have a reference to this specific PaymentIntent, and you will be able to refund them $5 or less.

#

The ID starts with pi_xxx

tight vine
#

ok