Skip to main content
Version: main

Get booking calendar

Retrieve the booking calendar for a catalog item and location.

HTTP request

GET /api/sn_apptmnt_booking/v1/appointment/calendar

Path parameters

None.

Query parameters

NameDescription
catalog_idOptional — set via the verb's QueryParameters type.
locationOptional — set via the verb's QueryParameters type.
opened_forOptional — set via the verb's QueryParameters type.

Request body

Don't supply a request body for this method.

Response

CalendarResponse.

Example

response, err := client.AppointmentBooking().Calendar().Get(ctx, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?