Get a list of medical instructions associated with the user
Returns a list of medical instructions
GET https://api.humanapi.co/v1/human/medical/instructions
Returns a single instruction
GET https://api.humanapi.co/v1/human/medical/instructions/{id}
# Returns a json array of instructions:
[
{
"id": "55e692d20c7deefb7cfe90f8",
"createdAt": "2015-09-01T21:42:09.969Z",
"updatedAt": "2015-09-01T21:42:10.072Z",
"dateTime": "2015-02-11T09:30:00.000Z",
"source": "emr-1-320",
"name": "Instructions",
"text": "Please forward scans to \nDr. Reddy\nDepartment of Children's medicine\n 123 Main St.\nCedarCity, CA 00000\n\nI encourage you to visit my website",
"codes": []
}
]
# Get all instructions associated with the user
curl -H "Authorization: Bearer demo" "https://api.humanapi.co/v1/human/medical/instructions"
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 | String | (optional) The date of the instruction |
name | String | (optional) The name of the instruction (ex. “instructions”, or “discharge instructions”, etc.) |
text | String | (optional) Text content of the instruction |
codes | Array[Object] | (optional) See codes |