v2

latestOpenAPI 3.0.32026-08-07222102695.9 KB
Group Appointment

List group appointments

get/group_appointments

Query parameters

pageinteger
per_pageinteger
sortstring[]

Comma separated search fields. See: Ordering

[
  "created_at:desc"
]
order'asc' | 'desc'
q[]string[]

Filter result by one or more fields.

See Filtering Results

Available filters:

ValueFormat
appointment_type_idint64
archived_atdate-time
business_idint64
created_atdate-time
deleted_atdate-time
ends_atdate-time
idint64
patient_idsarray
practitioner_idint64
repeated_from_idint64
starts_atdate-time
updated_atdate-time

Response

successful operation

total_entriesinteger

Example response

{
  "group_appointments": [
    {
      "appointment_type": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/appointment_types/1"
        }
      },
      "attendees": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/group_appointments/1/attendees"
        }
      },
      "business": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/businesses/1"
        }
      },
      "conflicts": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/group_appointments/1/conflicts"
        }
      },
      "links": {
        "self": "https://api.au1.cliniko.com/v1/group_appointments/1"
      },
      "patient_ids": [
        "1"
      ],
      "practitioner": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/practitioners/1"
        }
      },
      "repeated_from": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/group_appointments/1"
        }
      },
      "repeats": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/group_appointments?q[]=repeated_from_id:=1"
        }
      }
    }
  ],
  "total_entries": 1,
  "links": {
    "self": "https://api.au1.cliniko.com/v1/group_appointments?page=2",
    "previous": "https://api.au1.cliniko.com/v1/group_appointments?page=1",
    "next": "https://api.au1.cliniko.com/v1/group_appointments?page=3"
  }
}