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

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
dateTimeString(optional) The date of the CCD
authorString(optional) CCD author’s name
organizationObject(optional) See organizations object

Response Headers (Raw CCD)

HeaderValue
Content-Typetext/xml