Get a questionnaire reponse by ID

get

/QuestionnaireResponse/{id}

Retrieves a questionnaire response by the associated ID.

Authorization Types

This operation supports the following authorization types:

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Headers
Body
Example Response (application/fhir+json)
{
    "resourceType":"QuestionnaireResponse",
    "id":"SH-12508041",
    "questionnaire":"https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Questionnaire/SH-12508041",
    "status":"in-progress",
    "subject":{
        "reference":"Patient/12508041"
    },
    "authored":"2019-10-25T14:57:43Z",
    "item":[
        {
            "id":"111",
            "linkId":"93",
            "text":"Tobacco",
            "extension":[
                {
                    "url":"https://fhir-ehr.cerner.com/r4/StructureDefinition/note",
                    "valueAnnotation":{
                        "authorReference":{
                            "reference":"Practitioner/109413936",
                            "display":"Lombardi, Falco Shine"
                        },
                        "time":"2021-06-15T22:15:26.000Z",
                        "text":"category/group comment"
                    }
                }
            ],
            "item":[
                {
                    "linkId":"93-123",
                    "text":"Number of years:",
                    "answer":[
                        {
                            "valueQuantity":{
                                "value":"20",
                                "unit":"year (iso1000)",
                                "system":"http://unitsofmeasure.org",
                                "code":"a"
                            }
                        }
                    ]
                },
                {
                    "linkId":"93-456",
                    "text":"Tobacco use per day:",
                    "answer":[
                        {
                            "valueString":"Answer text"
                        }
                    ]
                },
                {
                    "linkId":"93-789",
                    "text":"Ready to change:",
                    "extension":[
                        {
                            "url":"https://fhir-ehr.cerner.com/r4/StructureDefinition/choice-answer",
                            "valueBoolean":true
                        }
                    ],
                    "answer":[
                        {
                            "valueCoding":{
                                "system":"https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/nomenclature",
                                "code":"960439",
                                "display":"Yes"
                            }
                        },
                        {
                            "valueString":"Other answer text"
                        }
                    ]
                }
            ]
        }
    ]
}

Default Response

An OperationOutcome describing any error that occurred.
Headers
  • For Update or Patch versioning controls. Related to If-Match. When a resource performs an operation that creates or updates a record, an Etag value is returned as a header. This same value should be included in request headers as an If-Match for any subsequent update to that record.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the X-Request-Id, if present.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the opc-Request-Id, if present.
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : issue
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : details
Type: object
Show Source
Nested Schema : location
Type: array
Show Source
Nested Schema : coding
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top