Skip to main content

R4 QuestionnaireResponse

The QuestionnaireResponse resource describes a "structured set of questions and their answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the questionnaire being responded to." (HL7 FHIR R4 QuestionnaireResponse)

Supported Profiles

This API supports the following FHIR profiles:

Operations

The General Purpose FHIR R4 QuestionnaireResponse resource supports the following standard operations. However, support varies by the targeted CareRecord or solution.

CareRecord / SolutionCreateReadUpdateSearch
GEHRIMED-Yes-Yes
myAvatarYesYesYesYes
myEvolv-Yes-Yes
myUnity-Yes-Yes
Referral Manager----
info

Not all Netsmart solutions support QuestionnaireResponse search. See supported operations table above and consult your target solution's documentation for more information.

This resource supports a combination of standard and custom search parameters in addition to the common parameters.

Standard Parameters

NameTypeDescription
authorreferenceThe author of the questionnaire response.
authoreddateWhen the questionnaire response was last changed
encounterreferenceUnique identifier of the Encounter
patientreferenceUnique identifier of the patient

Custom Parameters

NameTypeDescription
questionnaire_typereferenceREQUIRED Category of the Questionnaire. Possible values include: TreatmentPlan.
practitionerreferenceOPTIONAL Unique identifier of the Practitioner
enddateDeprecated. Use authored parameter with le prefix instead.
startdateDeprecated. Use authored parameter with ge prefix instead.

Search Examples

The POST method is recommended as it keeps health information out of the URL.

Search EHR Assessment Results by Patient
curl -X POST https://fhir.netsmartcloud.com/v4/QuestionnaireResponse/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "patient=Patient/123" \
-d "questionnaire_type=intake"