Get a list of medical plans of care associated with the user
Returns a list of medical plans of care
GET https://api.humanapi.co/v1/human/medical/plans_of_care
Returns a single plan of care
GET https://api.humanapi.co/v1/human/medical/plans_of_care/{id}
# Returns a json array of plans of care:
[ {
"id": "55e692540c7deefb7cfe90f7",
"createdAt": "2014-09-01T20:46:35.731Z",
"updatedAt": "2014-09-01T20:46:35.731Z",
"source": "emr-1-320",
"name": "encounter",
"text": "11/13/2015 Appointment Physical Therapy ",
"organization": {
"href": "/medical/organizations/53c050ac51c69003200aa998",
"id": "53c050ac51c69003200aa998",
"name": "Cleveland Clinic"
},
"codes": []
} ]
# Get all plans of care associated with the user
curl -H "Authorization: Bearer demo" "https://api.humanapi.co/v1/human/medical/plans_of_care"
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 |
name | String | (optional) The name of the plan of care |
text | String | (optional) The text description of the author |
date | Date | (optional) The date of the plan of care |
type | String | (optional) The type of the plan of care |
specialty | String | (optional) The specialty of the plan of care |
provider | Object | (optional) See provider object |
organization | Object | (optional) See organizations object |
codes | Array[Object] | (optional) See codes |
Provider Object
Property | Type | Description |
---|---|---|
name | Object | (optional) See name object |
address | String | (optional) Address of the provider e.g. "CORE ORTHOPEDICS, SIOUX FALLS, SD, 57103" |