curl --request GET \
  --url https://api.splose.com/v1/waitlists/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 1,
  "practitionerId": 12,
  "userGroupId": 12,
  "locationId": 13,
  "patientId": 14,
  "serviceIds": [
    1,
    2,
    3
  ],
  "preferredDays": [
    "Monday",
    "Tuesday"
  ],
  "preferredTime": [
    "morning",
    "afternoon",
    "evening"
  ],
  "waitlistTags": [
    "High",
    "Medium",
    "Low"
  ],
  "createdAt": "2023-07-30T09:00:00.000Z",
  "updatedAt": "2023-07-30T09:00:00.000Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required
Required range: x > 0
Example:

1

Response

200 - application/json
Object with waitlist data.
id
integer
required

Waitlist Item Id

Required range: x > 0
Example:

1

practitionerId
integer | null
required

The id of the practitioner associated to the waitlist item

Example:

12

userGroupId
integer | null
required

The id of the practitioner group associated to the waitlist item

Example:

12

locationId
integer | null
required

The id of the location associated to the waitlist item

Example:

13

patientId
integer | null
required

The id of the patient associated to the waitlist item

Example:

14

serviceIds
number[] | null
required

The id list of services the waitlist item is waiting for

Example:
[1, 2, 3]
preferredDays
string[]
required

Preferred days of the waitlist item

Example:
["Monday", "Tuesday"]
waitlistTags
string[] | null
required

The waitlist tag ids of the waitlist item

Example:
["High", "Medium", "Low"]
preferredTime
string[] | null

Preferred time of service for the waitlist item

Example:
["morning", "afternoon", "evening"]
createdAt

Object creation date time

Example:

"2023-07-30T09:00:00.000Z"

updatedAt

Object update date time

Example:

"2023-07-30T09:00:00.000Z"