Image Procedure

Procedure requests and examples

Terminology Bindings

Terminology Detail
Procedure.code The specific procedure that is performed.

Parameters

Parameter Is Required Description
Id This, or patient. The logical resource ID associated with the resource.
patient This, or ID The patient who had the procedure.
date No Date of the procedure.
_revinclude No A request to include any Provenance resource in the bundle.

Procedure Requests

Procedure by ID and date

GET: 'https://api.practicestudio.net/patientportal/fhir/Procedure?patient={Patient_ID}'
GET: 'https://api.practicestudio.net/patientportal/fhir/Procedure?date=2020-07-06&patient={Patient_ID}'

Procedure by Resource ID

GET: 'https://api.practicestudio.net/patientportal/fhir/Procedure/{Resource_ID}'

Procedure Example Response

Example Procedure JSON Response:


{
  "resourceType": "Procedure",
  "id": "10012502",
  "meta": {
    "lastUpdated": "0001-01-01T00:00:00-06:00",
    "profile": [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-procedure"
    ]
  },
  "status": "completed",
  "code": {
    "coding": [
      {
        "system": "http://www.ama-assn.org/go/cpt",
        "code": "82607",
        "display": "82607 Vitamin B-12",
        "userSelected": false
      }
    ]
  },
  "subject": {
    "reference": "Patient/000034"
  },
  "performedDateTime": "2020-07-06"
}