Add Refund To Booking

Add Refund to Booking

POST [PlatformAddress]/api/1.0/venue?action=addRefundToBooking

Add a refund to a booking using this api.

Path Parameters

{
  "Success": true,
  "refundDetails": [
    {
      "invoiceId": 1736,
      "refundId": 180
    }
  ]
}

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.

Example Request

Add refund to booking

{
  "venueId": 2,
  "bookingId": 2,
  "refund": {
    "refundDate": "2015-01-22 00:00:00 UTC",
    "amount": 100,
    "notes": "Note for refund"
  }
}

Payment Details

Returns

Refund Details

Throws

Last updated