Awell Health Developer Hub
Developer Hub

If your pathway has baseline info or data points, you can query those data points and their values via the Awell API.

Request

Query

  • graphql
01query GetBaselineInfo($pathway_id: String!) {
02 baselineInfo(pathway_id: $pathway_id) {
03 baselineDataPoints {
04 value
05 definition {
06 id
07 title
08 category
09 key
10 valueType
11 possibleValues {
12 label
13 value
14 }
15 unit
16 range {
17 min
18 max
19 }
20 }
21 }
22 }
23}

Variables

  • json
01{
02 "pathway_id": "{{PATIENT_PATHWAY_ID}}"
03}