Get a list of medical problems the user has had so far
Returns a list of medical problems
GET https://api.humanapi.co/v1/human/medical/issues
Returns a single problem
GET https://api.humanapi.co/v1/human/medical/issues/{id} 
# Returns a json array of problems:
[
    {
        "codes": [
            {
                "code": "6142004",
                "codeSystem": "2.16.840.1.113883.6.96",
                "codeSystemName": "SNOMED-CT",
                "name": "Influenza"
            }
        ],
        "createdAt": "2014-10-19T21:02:17.949Z",
        "dateTime": "2014-08-29T04:00:00.000Z",
        "id": "5443d6ca71b5c7f1a243879f",
        "name": "Influenza",
        "organization": {
            "href": "/medical/organizations/54dc427aaa6b4cb7d6203061",
            "id": "54dc427aaa6b4cb7d6203061",
            "name": "Cleveland Clinic"
        },
        "patient": {},
        "source": "emr-1-320",
        "updatedAt": "2014-10-19T21:02:17.949Z"
    },
    {
        "codes": [
            {
                "code": "729.89",
                "codeSystem": "2.16.840.1.113883.6.103",
                "codeSystemName": "ICD-9CM",
                "name": "WEAKNESS OF LEFT LEG"
            },
            {
                "code": "R53.1",
                "codeSystem": "2.16.840.1.113883.6.90",
                "codeSystemName": "ICD-10-CM",
                "name": "WEAKNESS OF LEFT LEG"
            }
        ],
        "createdAt": "2014-10-19T21:02:17.949Z",
        "dateTime": "2011-05-02T04:00:00.000Z",
        "id": "5443d6ca71b5c7f1a243879e",
        "name": "Pain in left leg",
        "organization": {
            "href": "/medical/organizations/54dc427aaa6b4cb7d6203061",
            "id": "54dc427aaa6b4cb7d6203061",
            "name": "Cleveland Clinic"
        },
        "patient": {},
        "source": "emr-1-320",
        "updatedAt": "2014-10-19T21:02:17.949Z"
    },
    {
        "codes": [
            {
                "code": "38341003",
                "codeSystem": "2.16.840.1.113883.6.96",
                "codeSystemName": "SNOMED-CT",
                "name": "Hypertensive disorder"
            }
        ],
        "createdAt": "2014-10-19T21:02:17.949Z",
        "dateTime": "2011-03-02T05:00:00.000Z",
        "id": "5443d6ca71b5c7f1a24387a0",
        "name": "Hypertensive disorder",
        "organization": {
            "href": "/medical/organizations/54dc427aaa6b4cb7d6203061",
            "id": "54dc427aaa6b4cb7d6203061",
            "name": "Cleveland Clinic"
        },
        "patient": {},
        "source": "emr-1-320",
        "updatedAt": "2014-10-19T21:02:17.949Z"
    }
]
# Get all problems associated with the user
curl -H "Authorization: Bearer demo" "https://api.humanapi.co/v1/human/medical/issues"
Response Properties
| Property | Type | Description | 
|---|---|---|
| id | String | The id of the resource | 
| source | String | The name of the originating service | 
| updatedAt | Date | The time the record was updated on the Human API server | 
| createdAt | Date | The time the record was created on the Human API server | 
| dateTime | Date | (deprecated) Date associated with the problem | 
| documentedDate | Date | (Optional) Date that the problem was documented | 
| startDate | Date | (optional) Date of the physician's understanding of when the problem first appeared | 
| endDate | Date | (Optional) Date of the physician's understanding of when the problem was resolved | 
| name | String | (optional) The name of the problem e.g. "Generalized abdominal pain" | 
| patient | Object | (optional) Patient information (“name” and other optional attributes) | 
| status | String | (optional) Status of the problem e.g. "Active" | 
| sourceOfInfo | String | (Optional) Context of the problem e.g. "Resolved Problem","Active Problem", "Encounter Diagnosis", etc. | 
| comments | String | (Optional) Comments or notes related to the problem | 
| concernStartDate | Date | (Optional) Start of the physician's concern about the problem. Can be different from when the problem actually started. | 
| concernEndDate | Date | (Optional) End of the physician's concern about the problem. Can be different from when the problem actually ended. | 
| organization | Object | (optional) See organizations object | 
| codes | Array[Object] | (optional) See codes | 
