Get a procedure request by ID

get

/ProcedureRequest/{id}

Retrieves an individual procedure request by the associated ID.

Authorization Types

This operation supports the following authorization types:

  • Patient
  • Provider
  • System

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Headers
Body
Example Response (application/json+fhir)
{
    "resourceType":"ProcedureRequest",
    "id":"309771147",
    "meta":{
        "versionId":"1",
        "lastUpdated":"2020-03-19T01:01:01.000Z"
    },
    "text":{
        "status":"generated",
        "div":"<div><p><b>Procedure Request</b></p><p><b>Subject</b>: SMART, JOE</p><p><b>Procedure</b>: Immunizations Quality Measures</p><p><b>Scheduled</b>: Mar  4, 2020  5:52 P.M. UTC</p><p><b>Status</b>: Accepted</p><p><b>Orderer</b>: SYSTEM, SYSTEM Cerner</p></div>"
    },
    "subject":{
        "reference":"Patient/12724067",
        "display":"SMART, JOE"
    },
    "code":{
        "text":"Immunizations Quality Measures"
    },
    "scheduledDateTime":"2020-03-04T11:52:15.000-06:00",
    "encounter":{
        "reference":"Encounter/97953480"
    },
    "status":"accepted",
    "orderedOn":"2020-03-04T11:52:15.000-06:00",
    "orderer":{
        "reference":"Practitioner/1",
        "display":"SYSTEM, SYSTEM Cerner"
    }
}

Default Response

An OperationOutcome describing any error that occurred.

Headers
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : issue
Type: array
Minimum Number of Items: 1
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : details
Type: object
Show Source
Nested Schema : location
Type: array
Show Source
Nested Schema : coding
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top