Get a list of medical functional statuses associated with the user
Returns a list of medical functional statuses
GET https://api.humanapi.co/v1/human/medical/functional_statuses
Returns a single functional status
GET https://api.humanapi.co/v1/human/medical/functional_statuses/{id}
# Returns a json array of functional statuses:
[
{
"id": "55e692d20c7deefb7cfe90f8",
"createdAt": "2014-09-01T21:42:09.969Z",
"updatedAt": "2014-09-01T21:42:10.072Z",
"dateTime": "2014-02-11T09:30:00.000Z",
"source": "emr-1-320",
"name": "Memory impairment",
"codes": []
}
]
# Get all functional statuses associated with the user
curl -H "Authorization: Bearer demo" "https://api.humanapi.co/v1/human/medical/functional_statuses"
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 | (optional) The date of the functional status |
name | String | (optional) The name of the functional status |
codes | Array[Object] | (optional) See codes |