Most telehealth visits typically collect a series of clinical related questions prior to a provider consult. These questions are bundled into an object known as the patient questionnaire in the Truepill ecosystem. These questionnaires are most commonly based on a specific therapy area or disease state that the patient is inquiring about. Health questionnaires can range in complexity from a three-step yes/no screening questionnaire to more complex 30+ questions with various question types, file/data uploads and answer-based branching logic.
The health questionnaire supports a range of questions types for your specific needs. The most commonly used question types are listed below:
Below are a series of clinical and survey questions that have been translated into a question object. A patient questionnaire consists of multiple questions.
A health questionnaire can be created using our /telehealth/health_questionnaire API endpoint. Truepill will provide a receipt confirmation of the request, and you will be required to reference your health_questionnaire_id when creating or updating a patient record.
There are timing dependencies that distance when you can update your health questionnaire.
You currently cannot update a health questionnaire after it has been created and used for a provider consult. You may however update your health questionnaire at any point before it has been used for a consult. This ensures that any historical provider consults are anchored to a specific health questionnaire that cannot be changed after the consult has taken place. This preserves the data in our EMR, maintaining the actual health questionnaire used during a consult which is important for both compliance and quality purposes. In other words, you cannot change the questions/details of a health questionnaire AFTER it has been used for a real consult.
If you need to make edits or updates to your health questionnaire after it has been used for a consult, you can simply create a new one and reference that patient_questionnaire_id for future consult requests.
You can submit answers to your health questionnaire using the /telehealth/patient_record_questionnaire API endpoint. Truepill will provide a receipt confirmation of the request. You must submit a valid answer for all required questions in your questionnaire. Additionally, when you submit answers to your questionnaire, you must also provide a valid patient_record_token as this is the first point where you are mapping the provided answers (from your patient) to your patient record.
Questions presented to a patient may depend on the answer to previous questions. The multiple_choice, checkbox and numeric question types can have properties that specify the branching logic for your next question. This is accomplished using a next_question_id parameter in your answer block.