Mutations
Submit a completed checklist
This request allows us to complete a checklist. We do not track the completion of individual checklist items, only that the checklist has been completed so that we can continue orchestrating the pathway.
- graphql
01mutation SubmitChecklist($input: SubmitChecklistInput!) {02 submitChecklist(input: $input) {03 activity {04 id05 status06 }07 }08}
- json
01{02 "input": {03 "activity_id": {{CHECKLIST_ID}}04 }05}
The optional X-User-ID
header can be used to specify which user has completed the checklist. When this header is present, Awell Orchestration will log a subactivity indicating that this specific user completed the checklist.
- json
01{02 "X-User-ID": "{{USER_ID}}"03}
The following input fields are available:
Field | Required | Description | Type |
---|---|---|---|
activity_id | Yes | the id of the checklist activity | string |