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

PropertyTypeDescription
idStringThe id of the resource
sourceStringThe name of the originating service
updatedAtDateThe time the record was updated on the Human API server
createdAtDateThe time the record was created on the Human API server
dateTimeDate(deprecated) Date associated with the problem
documentedDateDate(Optional) Date that the problem was documented
startDateDate(optional) Date of the physician's understanding of when the problem first appeared
endDateDate(Optional) Date of the physician's understanding of when the problem was resolved
nameString(optional) The name of the problem e.g. "Generalized abdominal pain"
patientObject(optional) Patient information (“name” and other optional attributes)
statusString(optional) Status of the problem e.g. "Active"
sourceOfInfoString(Optional) Context of the problem e.g. "Resolved Problem","Active Problem", "Encounter Diagnosis", etc.
commentsString(Optional) Comments or notes related to the problem
concernStartDateDate(Optional) Start of the physician's concern about the problem. Can be different from when the problem actually started.
concernEndDateDate(Optional) End of the physician's concern about the problem. Can be different from when the problem actually ended.
organizationObject(optional) See organizations object
codesArray[Object](optional) See codes