Get a list of medical procedures associated with the user
Returns a list of medical procedures
GET https://api.humanapi.co/v1/human/medical/procedures
Returns a single procedure
GET https://api.humanapi.co/v1/human/medical/procedures/{id} 
# Returns a json array of procedures:
[
    {
        "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",
        "device": null,
        "deviceCodes": [],
        "name": "HCHG CYSTOURETHROSCOPY",
        "organization": {
            "href": "/medical/organizations/53c050ac51c69003200aa998",
            "id": "53c050ac51c69003200aa998",
            "name": "Cleveland Clinic"
        },
        "performer": {
            "address": null,
            "organizationName": null,
            "phone": null
        },
        "specimen": null,
        "specimenCodes": [],
        "codes": [
            {
                "code": "52000",
                "codeSystem": "2.16.840.1.113883.6.12",
                "codeSystemName": "CPT-4",
                "name": "HCHG CYSTOURETHROSCOPY"
            }
        ]
    }
]
# Get all procedures associated with the user
curl -H "Authorization: Bearer demo" "https://api.humanapi.co/v1/human/medical/procedures"
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 procedure | 
| source | String | The name of the originating service | 
| device | String | (optional) Device Note: presence of this value is rare | 
| deviceCodes | Array[Object] | (optional) Device codes Note: presence of this value is rare | 
| name | String | (optional) Name of the procedure | 
| performer | Object | (optional) See performer information) | 
| specimen | String | (optional) Specimen related to the procedure (if applicable) Note: presence of this value is rare | 
| specimenCodes | Array[Object] | (optional) Specimen codes Note: presence of this value is rare | 
| organization | Object | (optional) See organizations object | 
| codes | Array[Object] | (optional) See codes | 
Performer Object
| Property | Type | Description | 
|---|---|---|
| address | String | (optional) Address of the performer | 
| organizationName | String | (optional) Name of the performer’s organization | 
| phone | String | (optional) Phone number of the performer | 
