Cancel Bulk Booking
To cancel bulk tee time reservation, send a request to below url.
DELETE /api/v5/bookings/{bulkBookingId}
- Path Parameters
- bulkBookingId:
e.g. E-123 or W-245
(String, Required) - Cancel the booking with this External Bulk Booking ID. Bookings can only be canceled by the user who created it.
- bulkBookingId:
This can be done with a curl command like so :
curl -X DELETE -H 'Content-Type:application/json' --user [[username]]:[[password]] '[[base-url]]/api/v5/bulkbookings/E-123'
- Successful Response (application/json)
{
"success": true,
"data": {
"status": "ok"
}
}
Note: If a cancellation request is made in violation of the cancellation policy, the request will be denied. Please see this document for more information.
2.539