curl --request GET \
  --url https://api.splose.com/v1/cases/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 1,
  "caseNumber": "0002",
  "budget": 200,
  "appointmentCount": 12,
  "contactId": 1,
  "providerNumber": "1512",
  "referralPeriod": "Standard",
  "issueDate": "2024-06-09T14:30:00.000Z",
  "expiryDate": "2024-06-25T14:29:59.000Z",
  "notes": "Notes",
  "trackType": "Budget",
  "hours": 32,
  "includeDidNotArrive": true,
  "includeCancelled": true,
  "practitionerId": 1,
  "items": [
    {
      "typeId": 1,
      "type": "Appointment"
    }
  ],
  "organisationId": 1,
  "patientId": 2,
  "isOpen": true,
  "hasAlert": true,
  "remindTime": "Time",
  "utilisationAlert": 1,
  "isAlertUtilizationSent": true,
  "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 case data.

The response is of type object.