v1

latestOpenAPI 3.0.02026-07-26550199.6 KB
screener

Get a single screener

Get screener data by id

get/screeners/{id}

Path parameters

idinteger required
Example:1

Response

Object with screener data.

idinteger required

Screener Item Id

patientIdinteger nullable required

The id of the patient associated to the screener item

triagingboolean nullable

Is the screener item active or closed

formIdnumber nullable required

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

screenerTagsstring[] nullable required

The screener tag ids of the screener item

archivedboolean nullable

Whether the screener has been archived

Example response

{
  "id": 1,
  "patientId": 14,
  "triaging": true,
  "formId": 1,
  "screenerTags": [
    "High",
    "Medium",
    "Low"
  ]
}