v1
latestOpenAPI 3.0.12026-07-14164671.7 KBRefunding card payments
Refund a payment
You can use this endpoint to fully or partially refund a payment.
post/v1/payments/{paymentId}/refunds
Path parameters
paymentIdstring required
The unique payment_id of the payment you want to refund.
Request body
Example request
{
"amount": 150000,
"refund_amount_available": 200000
}Response
successful operation
Example response
{
"_links": {
"payment": {
"href": "https://an.example.link/from/payment/platform",
"method": "GET"
},
"self": {
"href": "https://an.example.link/from/payment/platform",
"method": "GET"
}
},
"amount": 120,
"created_date": "2017-01-10T16:52:07.855Z",
"payment_id": "hu20sqlact5260q2nanm0q8u93",
"refund_id": "act4c33g40j3edfmi8jknab84x",
"settlement_summary": {
"settled_date": "2016-01-21"
},
"status": "success"
}