Booking
Book a Tee Time
To book a tee time send a request to below url.
POST /api/v2/bookings
- Json body parameters.
- facilityId (Type: Integer) ID of the facility.
- teetime (Type: Date yyyy-mm-dd HH:MM:ss) Date of the booking
- round (Type: String) Name of the round.
- players (Type: Integer) Number of players participating in the booking (between 1-4).
- contactPhone (Type: String) Phone number.
- contactEmail (Type: String) E-mail.
- contactFirstName (Type: String) First name of the contact person for this booking.
- contactLastName (Type: String) Last name of the contact person for this booking.
- holes (Type: Integer) Number of holes (9 or 18).
- teeId (Type: Integer) ID of the tee time.
All of the above fields are required. An example request could look like this :
curl -X POST -H 'Content-Type:application/json' --user [[username]]:[[password]] '[[base-url]]/api/v2/bookings'
-d '{"facilityId":"1",
"teetime":"2018-08-20 07:20:00",
"round":"1",
"players":3,
"contactPhone":"07712345678",
"contactEmail":"james.smith@gmail.com",
"contactName":"James Smith",
"holes":9,
"teeId":4250490}'
- Successful response (application/json)
{ "success": true, "data": { "bookingId": "ZG1234" } }
2.221