# List Group Appointments NOT IMPLEMENTED YET Endpoint: GET /group_appointment Version: v1 Security: x-api-key, A-api-key ## Query parameters: - `page` (integer) Example: 1 - `page_size` (integer) Example: 50 - `sort_by` (array) Comma separated search fields Example: ["[\"field_name\",\"field_name\"]"] - `q[]` (array) Filter result by one or more fields. See Query Filtering Available filters: | Value | Format | |---|---| | created | timestamp | | updated | timestamp | | app_time | datetime| | profession_id | integer | | business_id | integer | | appointment_type_id | integer | | practitioner_id | integer | ## Response 200 fields (application/json): - `group_appointments` (array) - `group_appointments.row_num` (integer) - `group_appointments.total_rows` (integer) - `group_appointments.links` (object) - `group_appointments.links.self` (string) Example: "https://api.pracsuite.com/v1/group_appointment/1" - `group_appointments.links.members` (string) Example: "https://api.pracsuite.com/v1/group_appointment/1/member" - `group_appointments.links.resources` (string) Example: "https://api.pracsuite.com/v1/group_appointment/1/resource" - `group_appointments.tenant_id` (integer) - `group_appointments.appointment_id` (integer) - `group_appointments.app_time` (string) - `group_appointments.description` (string) - `group_appointments.appointment_type_id` (integer) - `group_appointments.max_class_size` (integer) - `group_appointments.curr_class_size` (integer) - `group_appointments.appointment_status_id` (integer) - `group_appointments.category` (string) - `group_appointments.duration` (integer) - `group_appointments.notes` (string) - `group_appointments.practitioner_id` (integer) - `group_appointments.business_id` (integer) - `group_appointments.profession_id` (integer) - `group_appointments.item_id` (integer) - `group_appointments.created` (string) - `group_appointments.modified` (string) - `group_appointments.item_group_id` (integer) - `group_appointments.telehealth_patient_link` (string) - `group_appointments.telehealth_practitioner_link` (string) - `total_entries` (integer) ## Response 400 fields (application/json): - `error` (object, required) - `error.status` (integer) Example: 400 - `error.code` (string) Example: "INVALID_PARAMS" - `error.detail` (string) Human readable explanation of the error Example: "One or more request parameters are invalid." - `request_id` (string, required) Example: "00000000-0000-0000-0000-000000000000" ## Response 401 fields (application/json): - `error` (object, required) - `error.status` (integer) Example: 403 - `error.code` (string) Example: "UNAUTHORIZED" - `error.detail` (string) Human readable explanation of the error Example: "Access could not be verified for this request." - `request_id` (string, required) Example: "00000000-0000-0000-0000-000000000000" ## Response 403 fields (application/json): - `error` (object, required) - `error.status` (integer) Example: 403 - `error.code` (string) Example: "MISSING_AUTHENTICATION_TOKEN" - `error.detail` (string) Human readable explanation of the error Example: "Authentication token is missing or the requested endpoint does not exist" - `request_id` (string, required) Example: "00000000-0000-0000-0000-000000000000" ## Response 500 fields (application/json): - `error` (object, required) - `error.status` (integer) Example: 500 - `error.code` (string) Example: "SERVER_ERROR" - `error.detail` (string) Human readable explanation of the error Example: "An unexpected error occurred while processing your request. Please try again in a few minutes. If it keeps happening, contact support with Request ID: 00000000-0000-0000-0000-000000000000." - `request_id` (string, required) Example: "00000000-0000-0000-0000-000000000000"