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
| Name | Description |
|---|---|
catalog_id | Optional — set via the verb's QueryParameters type. |
location | Optional — set via the verb's QueryParameters type. |
opened_for | Optional — 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)
}