Awell Health Developer Hub
Developer Hub

Request

Mutation

  • graphql
01mutation UpdatePatient($input: UpdatePatientInput!) {
02 updatePatient(input: $input) {
03 patient {
04 id
05 }
06 }
07}

Variables

Have a look at the validation section of the createPatient mutation to learn more about in what format values for certain variables should be passed.

  • json
01{
02 "input": {
03 "patient_id": "{{PATIENT_ID}}",
04 "profile": {...}
05 }
06}

How to use