Request user window
Retrieve appointment availability for a user's window.
HTTP request
POST /api/sn_apptmnt_booking/v1/appointment/userwindow
Path parameters
None.
Query parameters
None.
Request body
Supply a }.
Response
AvailabilityResponse.
Example
// Build the request body
body := appointmentbookingapi.NewUserWindowRequest()
response, err := client.AppointmentBooking().UserWindow().Post(ctx, body, nil)
if err != nil {
log.Fatal(err)
}