Awell Health Developer Hub
Developer Hub

This request allows us to fetch the details of a checklist activity.

Request

Query

  • graphql
01query GetChecklist($id: String!) {
02 checklist(id: $id) {
03 checklist {
04 title
05 items
06 }
07 }
08}

Variables

An example id for a checklist is "9rjfb9qE4pEY".

  • json
01{
02 "id": "{{CHECKLIST_ID}}"
03}

Where to find the checklist id

The id of the checklist can be found in the object.id field of an activity.

  • json
01{
02 "activity": {
03 "id": "{{ACTIVITY_ID}}",
04 "object": {
05 "id": "{{CHECKLIST_ID}}",
06 "type": "checklist"
07 },
08 ...
09 }
10}