Skip to content

List Group Appointment Members

Request

Security
x-api-key and a-api-key
Query
pageinteger, >= 1
Example:page=1
page_sizeinteger, [ 1 .. 200 ]
Example:page_size=50
sort_byArray of strings

Comma separated search fields. See Sorting

Example:sort_by=["appointment_id","client_id","appointment_client_id"]
q[]Array of strings

Filter result by one or more fields.

Available filters:

ValueFormat
createdtimestamp
updatedtimestamp
app_timedatetime
appointment_idinteger
profession_idinteger
business_idinteger
client_idinteger
appointment_type_idinteger
practitioner_idinteger
GET
/appointment_client
curl -i -X GET \
  'https://api.pracsuite.com/v1/appointment_client?page=1&page_size=50&sort_by=%5B%22field_name%22%2C%22field_name%22%5D&q%5B%5D=string' \
  -H 'a-api-key: YOUR_API_KEY_HERE' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Successful

Bodyapplication/json
appointment_clientsArray of objects(Group Appointment Member)
total_entriesinteger
Response
{ "appointment_clients": [ {} ], "total_entries": 0, "links": { "self": "https://api.pracsuite.com/v1/appointment_client?page=2", "previous": "https://api.pracsuite.com/v1/appointment_client?page=1", "next": "https://api.pracsuite.com/v1/appointment_client?page=3" } }