Welcome Menu

The Welcome Menu provides the user with a jump off point for the features of the Smart Symptom Checker.

Once you have successfully Requested an Access Token and Initiated Smart Symptom Checker, the API will respond with some welcome text and a question containing a list of choices from which one should be chosen to start a particular route.

ChoiceDescription
Check symptomsCheck symptoms for the current user or someone else. See Check Symptoms for more information
Health testsUser can test their health knowledge with a quiz or check their own health using self-assessments. See Health tests for further information.
Ask a questionUser can ask any health related question. See Ask a question for further information.

⚠️Info

These choices are subject to change

The following is an example of the response received after Initiating Smart Symptom Checker .

Example response

{
    "popup": false,
    "messages": [
        {
            "type": "TEXT",
            "value": "Welcome!",
            "meta": {
                "chat_context": [
                    "false"
                ]
            }
        },
        {
            "type": "TEXT",
            "value": "What would you like to do?",
            "meta": {
                "chat_context": [
                    "false"
                ]
            }
        }
    ],
    "question": {
        "mandatory": true,
        "multiple": false,
        "choices": [
            {
                "id": "0",
                "label": "Check symptoms"
            },
            {
                "id": "1",
                "label": "Health tests"
            },
            {
                "id": "2",
                "label": "Ask a question"
            }
        ]
    },
    "conversation_model": {
        "conversation_context": {
            "conversation": false,
            "type": "ASSESSMENT"
        },
        "symptoms_summary": {},
        "report": {}
    },
    "conversation_id": "1bb88d16-406e-47d4-80f2-6285b31026b2"
}

What’s Next