Cancel Bulk Booking

To cancel bulk tee time reservation, send a request to below url.

DELETE /api/v3/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.

This can be done with a curl command like so :

curl -X DELETE -H 'Content-Type:application/json'  --user [[username]]:[[password]] '[[base-url]]/api/v3/bulkbookings/E-123'
  • Successful Response (application/json)
{
    "success": true,
    "data": {
        "status": "ok"
    }
}