Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you do not want to disable patient email notifications, do not include the notificationFlag parameter in the API call. If the parameter is included with any value other than “DISABLE_PATIENT_EMAIL_NOTIFICATION”, an error will be returned.

Configuring whether a questionnaire can be amended

...

Clinical teams can configure whether the patient or professionals should be allowed to amend a questionnaire after it has been submitted by including the ‘amendableBy’ parameter. When this parameter is included with the value “Patient”, the patient will be able to amend the questionnaire after they have submitted it. When the ‘amendableBy’ parameter is included with the value “Practitioner”, professionals will be able to amend the answers after the patient has submitted them. If the amendableBy parameter is not included, the patient will not be able to amend the questionnaire after submission. If the amendableBy parameter is included with a value that is not “Patient” or “Practitioner”, an error will be returned.

The ‘amendableBy’ parameter can be included in the API call twice, with “Practitioner” and “Patient”, if the patient and professionals should be allowed to edit the completed questionnaires.

Code Block
 {
            "name": "amendableBy",
            "valueCode": "Practitioner"
        },
        {
            "name": "amendableBy",
            "valueCode": "Patient"
        }

Searching for a Questionnaire resource

...