GET
/
assessment
/
api
/
v1
/
questionnaire_data
/
{assessment_id}

The format of the response is as follows:

Response

{
    "data": {
        "practitioner": {
            "practitioner_uuid": "<string>"
        },
        "patient": {
            "unique_identifier": "<string>",
            "patient_uuid": "<string>",
            "age": "<integer>",
            "gender": "<m/f/o>",
        },
        "questionnaire": [
            {
                "question": "<string>",
                "answer": "<string>",
                "items": [
                    {
                        "question": "<string>",
                        "answer": "<string>"
                        "items": []
                    }
                ]
            },
        ]
    }
}

Authorizations

auth
string
header
required

The authentication token of the developer (generated using Authorization API).

Headers

client-id
string
required

Any unique string to identify the logged in developer.

content-type
enum<string>
required
Available options:
application/json

Path Parameters

assessment_id
string
required

The hash that uniquely identifies the assessment session.

Response

200 - application/json
data
object