Defines the response returned by RefundPayment.
If there are errors processing the request, the refund
field might not be
present, or it might be present with a status of FAILED
.
Refund Payment Response
Name | Type | Tags | Description |
---|---|---|---|
errors |
List of Error |
Optional | Information about errors encountered during the request. |
refund |
Payment Refund |
Optional | Represents a refund of a payment made using Square. Contains information about the original payment and the amount of money refunded. |
{
"refund": {
"amount_money": {
"amount": 100,
"currency": "USD"
},
"created_at": "2018-10-17T20:41:55.520Z",
"id": "UNOE3kv2BZwqHlJ830RCt5YCuaB_xVteEWVFkXDvKN1ddidfJWipt8p9whmElKT5mZtJ7wZ",
"payment_id": "UNOE3kv2BZwqHlJ830RCt5YCuaB",
"status": "PENDING",
"updated_at": "2018-10-17T20:41:55.520Z"
}
}