{% swagger baseUrl="[PlatformAddress]/api/1.0/" path="venue?action=addRefundToBooking" method="post" summary="Add Refund to Booking" %} {% swagger-description %} Add a refund to a booking using this api. {% endswagger-description %}
{% swagger-parameter name="venueId" type="integer" in="path" %} The unique id of the venue to which the booking belongs {% endswagger-parameter %}
{% swagger-parameter name="bookingId" type="integer" in="path" %} The unique id of the booking to which the refund will be added {% endswagger-parameter %}
{% swagger-parameter name="refund" type="object" in="path" %} The payment details to add to the booking {% endswagger-parameter %}
{% swagger-response status="200" description="" %}
{
"Success": true,
"refundDetails": [
{
"invoiceId": 1736,
"refundId": 180
}
]
}
{% endswagger-response %} {% endswagger %}
All invoices of the booking will be checked for the refunded amount and if the amount is refundable then only the refund amount will be added to invoice.
Add refund to booking
{
"venueId": 2,
"bookingId": 2,
"refund": {
"refundDate": "2015-01-22 00:00:00 UTC",
"amount": 100,
"notes": "Note for refund"
}
}
Property | Description | Required |
---|---|---|
refundDate | The date & time of the refund | timestamp in UTC |
amount | The refund amount | number |
notes | Additional notes about the refund | string |
Property | Description |
---|---|
success | Whether or not the refund was added to the booking |
refundDetails | A collection of invoiceId and refundId values |
Property | Description |
---|---|
invoiceId | The unique id of the invoice |
refundId | The id of the invoice refund |
Code | Description |
---|---|
Specific Code: 24149 | The refund details are invalid |
Specific Code: 24145 | The booking does not have an amount that can be refunded |
Specific Code: 24146 | Cannot refund more than the total amount payable on a booking |
Specific Code: 24147 | The refund amount must be greater than zero |
Specific Code: 24148 | The full refund amount could not be applied to the booking |