Get booking configuration
Retrieve the appointment-booking configuration for a catalog item.
HTTP request
GET /api/sn_apptmnt_booking/v1/appointment/configuration
Path parameters
None.
Query parameters
| Name | Description |
|---|---|
catalog_id | Optional — set via the verb's QueryParameters type. |
Request body
Don't supply a request body for this method.
Response
ConfigurationResponse — an item envelope of booking settings.
Example
response, err := client.AppointmentBooking().Configuration().Get(ctx, nil)
if err != nil {
log.Fatal(err)
}