Create a refund

POST {{baseUrl}}/v1/refunds

When you create a new refund, you must specify a Charge or a PaymentIntent object on which to create it.

Creating a new refund will refund a charge that has previously been created but not yet refunded. Funds will be refunded to the credit or debit card that was originally charged.

You can optionally refund only part of a charge. You can do so multiple times, until the entire charge has been refunded.

Once entirely refunded, a charge can’t be refunded again. This method will raise an error when called on an already-refunded charge, or when trying to refund more money than is left on a charge.

Request Body

[{"name"=>"amount", "value"=>"<integer>", "datatype"=>"string"}, {"name"=>"charge", "value"=>"<string>", "datatype"=>"string"}, {"name"=>"currency", "value"=>"<string>", "datatype"=>"string"}, {"name"=>"customer", "value"=>"<string>", "datatype"=>"string"}, {"name"=>"expand[0]", "value"=>"<string>", "datatype"=>"string"}, {"name"=>"expand[1]", "value"=>"<string>", "datatype"=>"string"}, {"name"=>"instructions_email", "value"=>"<string>", "datatype"=>"string"}, {"name"=>"origin", "value"=>"<string>", "datatype"=>"string"}, {"name"=>"payment_intent", "value"=>"<string>", "datatype"=>"string"}, {"name"=>"reason", "value"=>"<string>", "datatype"=>"string"}, {"name"=>"refund_application_fee", "value"=>"<boolean>", "datatype"=>"string"}, {"name"=>"reverse_transfer", "value"=>"<boolean>", "datatype"=>"string"}]

HEADERS

KeyDatatypeRequiredDescription
Content-Typestring