curl --request GET \
  --url https://api.splose.com/v1/appointments \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1,
      "start": "2023-07-30T09:00:00.000Z",
      "end": "2023-07-30T09:00:00.000Z",
      "isUnavailableBlock": false,
      "serviceId": 1,
      "locationId": 1,
      "practitionerId": 1,
      "maxPatients": 1,
      "caseId": 1,
      "appointmentPatients": [
        {
          "appointmentId": 1,
          "patientId": 1,
          "status": "Arrived",
          "note": "Some notes",
          "doNotInvoice": false,
          "invoiceId": 1,
          "cancellationReason": "Other",
          "cancellationRate": 30,
          "cancellationNote": "Some notes",
          "statusUpdatedAt": "2023-07-30T09:00:00.000Z"
        }
      ],
      "repeatId": "12345678-abcd-4321-dcba-12a34b56c78d",
      "recurringRule": "DTSTART:2023080T010000ZRRULE:FREQ=WEEKLY;INTERVAL=2;COUNT=6",
      "unit": "Hour",
      "pricing": 193.99,
      "total": 193.99,
      "taxType": "STANDARD",
      "supportItemIds": [
        1
      ],
      "note": "Some notes",
      "createdAt": "2023-07-30T09:00:00.000Z",
      "updatedAt": "2023-07-30T09:00:00.000Z",
      "deletedAt": "2023-07-30T09:00:00.000Z"
    }
  ],
  "links": {
    "previousPage": "/v1/${object_type}?id_gt=200",
    "nextPage": "/v1/${object_type}?id_lt=100"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

id_gt
integer | null

The starting object id of the next page

Example:

200

id_lt
integer | null

The starting object id of the previous page

Example:

100

update_gt

Search for objects updated after this date time

Example:

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

update_lt

Search for objects updated before this date time

Example:

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

include_archived
enum<string> | null
default:false

Whether archived objects should be retrieved, default is false

Available options:
true,
false
start_gt

Search for appointments start after this date time

Example:

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

start_lt

Search for appointments start before this date time

Example:

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

patientId
number | null

Search for appointments with this patient id

Example:

1

status
enum<string> | null

Patient status of this appointment

Available options:
Arrived,
Did not arrive,
Cancelled,
Completed
status_update_gt

Search for appointments status update after this date time

Example:

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

status_update_lt

Search for appointments status update before this date time

Example:

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

Response

200 - application/json
A paged array of appointments
data
object[]
required