Get an organization by ID

get

/Organization/{ID}

List an individual organization by its ID.

GET /Organization/:id
This operation supports the following authorization types:
  • Provider
  • Patient
  • System

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

Example Request
GET https://fhir-myrecord-sc.cerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/Organization/HCU.1
Example Response:
{
  "resourceType": "Organization",
  "id": "HCU.1",
  "meta": {
    "lastUpdated": "2021-08-09T15:28:54-04:00"
  },
  "name": "Health Enterprise",
  "active": true,
  "type": [
    {
      "coding": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/organization-type",
          "code": "prov",
          "display": "Healthcare Provider"
        }
      ]
    }
  ],
  "identifier": [
    {
      "system": "http://hl7.org/fhir/sid/us-npi",
      "value": "4510000001"
    }
  ],
  "address": [
    {
      "use": "work",
      "text": "53 Valley Stream Parkway,Malvern,PA,19355,United States",
      "line": [
        "53 Valley Stream Parkway"
      ],
      "city": "Malvern",
      "state": "PA",
      "postalCode": "19355",
      "country": "United States",
      "period": {
        "start": "2020-12-04T09:36:34-05:00"
      }
    },
    {
      "use": "work",
      "text": "105 N 9th St,Philadelphia,PA,19100,United States",
      "line": [
        "105 N 9th St"
      ],
      "city": "Philadelphia",
      "state": "PA",
      "postalCode": "19100",
      "country": "United States",
      "period": {
        "start": "2014-04-10T15:20:38-04:00"
      }
    },
    {
      "use": "work",
      "text": "208 Louisiana Ave,Philadelphia,PA,19101,United States",
      "line": [
        "208 Louisiana Ave"
      ],
      "city": "Philadelphia",
      "state": "PA",
      "postalCode": "19101",
      "country": "United States",
      "period": {
        "start": "2014-04-10T15:21:06-04:00"
      }
    },
    {
      "use": "work",
      "text": "51 Valley Stream Parkway,Philadelphia,PA,19101,United States",
      "line": [
        "51 Valley Stream Parkway"
      ],
      "city": "Philadelphia",
      "state": "PA",
      "postalCode": "19101",
      "country": "United States",
      "period": {
        "start": "2014-04-10T15:21:50-04:00"
      }
    },
    {
      "use": "work",
      "text": "PRM Address Street,Philadelphia,PA,19104,United States",
      "line": [
        "PRM Address Street"
      ],
      "city": "Philadelphia",
      "state": "PA",
      "postalCode": "19104",
      "country": "United States",
      "period": {
        "start": "2014-04-10T15:22:16-04:00"
      }
    },
    {
      "use": "old",
      "text": "15 Wells Ln,Louisville,KY,40201,United States",
      "line": [
        "15 Wells Ln"
      ],
      "city": "Louisville",
      "state": "KY",
      "postalCode": "40201",
      "country": "United States",
      "period": {
        "start": "2021-01-08T09:58:45-05:00"
      }
    }
  ],
  "telecom": [
    {
      "system": "phone",
      "value": "+16102196300x9082",
      "use": "work",
      "period": {
        "start": "2020-12-04T09:36:34-05:00"
      }
    },
    {
      "system": "phone",
      "value": "6102196300",
      "use": "work",
      "period": {
        "start": "2014-04-10T15:20:38-04:00"
      }
    },
    {
      "system": "phone",
      "value": "6102196300",
      "use": "work",
      "period": {
        "start": "2014-04-10T15:21:06-04:00"
      }
    },
    {
      "system": "phone",
      "value": "610-219-6300",
      "use": "work",
      "period": {
        "start": "2014-04-10T15:21:50-04:00"
      }
    },
    {
      "system": "phone",
      "value": "610-219-6300",
      "use": "work",
      "period": {
        "start": "2014-04-10T15:22:16-04:00"
      }
    },
    {
      "system": "phone",
      "value": "212-555-9133",
      "use": "old",
      "period": {
        "start": "2021-01-08T09:58:45-05:00"
      }
    }
  ],
  "text": {
    "status": "generated",
    "div": "<div xmlns="http://www.w3.org/1999/xhtml"><b>Organization</b><br /><b>Name</b>:Health Enterprise;<br /><b>Status</b>:Active;<br /><b>Identifier</b>:<br /><b>System</b>:http://hl7.org/fhir/sid/us-npi <b>Value</b>:4510000001 ;<br /><b>Telecom</b>:<br /><b>System</b>:phone <b>Value</b>:+16102196300x9082 ;<br /><b>System</b>:phone <b>Value</b>:6102196300 ;<br /><b>System</b>:phone <b>Value</b>:6102196300 ;<br /><b>System</b>:phone <b>Value</b>:610-219-6300 ;<br /><b>System</b>:phone <b>Value</b>:610-219-6300 ;<br /><b>System</b>:phone <b>Value</b>:212-555-9133 ;<br /><b>Address</b>:<br />53 Valley Stream Parkway,Malvern,PA,19355,United States;<br />105 N 9th St,Philadelphia,PA,19100,United States;<br />208 Louisiana Ave,Philadelphia,PA,19101,United States;<br />51 Valley Stream Parkway,Philadelphia,PA,19101,United States;<br />PRM Address Street,Philadelphia,PA,19104,United States;<br />15 Wells Ln,Louisville,KY,40201,United States;<br /><b>Type</b>:Healthcare Provider;<br /></div>"
  }
}
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the X-Request-Id, if present.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the opc-Request-Id, if present.
Back to Top