# Refund
A refund is a return of a captured transaction.
In order to create a Refund, send a request with the body of the request set as an Refund creatable. To create a partial refund, specify the amount on the amount
property. If amount
is not included in the request body the full capture will be refunded.
POST /v1/authorization/:id/refund
Host: merchant.intergiro.com
Content-Type: application/json
Authorization: Bearer <private.api.key>
{
"amount": 1
}
Example Response:
HTTP 200 OK
{
"amount": 1,
"created": "2021-06-11T09:19:12.618Z",
"reference": "00000000000",
"status": "approved"
}