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"
  ],
  "archived": false,
  "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.

The response is of type object.