Returns full CCDs available for the user including the raw xml
Click here for full XML example (Chrome or Firefox only)
Returns a list of CCDs available for a user
GET https://api.humanapi.co/v1/human/medical/ccds
Returns single CCD raw payload in XML format
GET https://api.humanapi.co/v1/human/medical/ccds/{id}/raw
# Returns a json array of ccds:
[{
"id": "54e35f5de0b3d53af2c65921",
"source": "emr-1-320",
"updatedAt": "2015-02-17T16:54:24.778Z",
"createdAt": "2015-02-10T00:09:36.679Z",
"dateTime": "2014-04-14T18:38:44.000Z",
"author": "John Smith",
"organization": {
"id": "53c050ac51c69003200aa998",
"name": "Cleveland Clinic",
"href": "/medical/organizations/53c050ac51c69003200aa998"
}
}]
# Get all ccds associated with the user
curl -H "Authorization: Bearer demo" "https://api.humanapi.co/v1/human/medical/ccds"
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 CCD |
author | String | (optional) CCD author’s name |
organization | Object | (optional) See organizations object |
Response Headers (Raw CCD)
Header | Value |
---|---|
Content-Type | text/xml |