SaveQuestionnaire
Saves partial answers of specific questions in the questionnaire.
JavaScript library method
patientportal.questionnaireRequest.saveQuestionnaire({
key: <key>,
answers: <answers>
});
HTTP Method
| Verb | URL |
|---|---|
| POST | /patientportalapi/questionnaire-request/save-questionnaire |
POST Parameters
| Parameter | Type | Description |
|---|---|---|
| key | string | The validation key provided in the URL. |
| answers | QuestionnaireAnswerData[] | Collection of answers. |
Remarks
The client can call this method as many time as it needs. Only answers attached in parameter Answers will be updated. The sort-order of questions isn’t important.
After the first call of this method the questionnaire’s status changes to Partially Complete.
The client must call SubmitQuestionnaire after all required questions are answered.