curl --request GET \
  --url https://api.splose.com/v1/screeners/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 1,
  "patientId": 14,
  "triaging": true,
  "formId": 1,
  "screenerTags": [
    "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 screener data.
id
integer
required

Screener Item Id

Required range: x > 0
Example:

1

patientId
integer | null
required

The id of the patient associated to the screener item

Example:

14

formId
number
required

The form template id in which the screener item is created from

Example:

1

screenerTags
string[] | null
required

The screener tag ids of the screener item

Example:
["High", "Medium", "Low"]
triaging
boolean | null

Is the screener item active or closed

Example:

true

createdAt

Object creation date time

Example:

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

updatedAt

Object update date time

Example:

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