Get an organization by ID

get

/Organization/{ID}

Retrieves an individual organization by the associated organization ID.

Authorization Types

This operation supports the following authorization types:

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

Example retrieval of a organization record by resource ID.
Example Request:
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Organization/675844
Example Response:
{
    'resourceType': 'Organization',
    'id': '675844',
    'meta': {
      'versionId': '29',
      'lastUpdated': '2018-05-22T16:46:28Z'
    },
    'text': {
      'status': 'generated',
      'div': '<div xmlns="http://www.w3.org/1999/xhtml"><p><b>Organization</b></p><p><b>Name</b>: Model Hospital</p><p><b>Status</b>: Active</p><p><b>TAXID</b>: 123456785</p></div>'
    },
    'identifier': [
      {
        'use': 'official',
        'type': {
          'coding': [
            {
              'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/334',
              'code': 'TAXID',
              'display': 'zzTax Identifier',
              'userSelected': true
            },
            {
              'system': 'http://terminology.hl7.org/CodeSystem/v2-0203',
              'code': 'TAX',
              'display': 'Tax ID number'
            }
          ],
          'text': 'zzTax Identifier'
        },
        'system': 'urn:oid:2.16.840.1.113883.4.4',
        'value': '123456785'
      }
    ],
    'active': true,
    'type': [
      {
        'coding': [
          {
            'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/278',
            'code': 'EMPLOYER',
            'display': 'Employer',
            'userSelected': true
          }
        ],
        'text': 'Employer'
      },
      {
        'coding': [
          {
            'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/278',
            'code': 'PLACEOFSVC',
            'display': 'Place of Service',
            'userSelected': true
          },
          {
            'system': 'http://terminology.hl7.org/CodeSystem/organization-type',
            'code': 'prov',
            'display': 'Healthcare Provider'
          }
        ],
        'text': 'Place of Service'
      },
      {
        'coding': [
          {
            'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/278',
            'code': 'CLIENT',
            'display': 'Client',
            'userSelected': true
          }
        ],
        'text': 'Client'
      },
      {
        'coding': [
          {
            'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/278',
            'code': 'LABORATORY',
            'display': 'Exchange Lab',
            'userSelected': true
          }
        ],
        'text': 'Exchange Lab'
      },
      {
        'coding': [
          {
            'system': 'https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/278',
            'code': 'FACILITY',
            'display': 'Facility',
            'userSelected': true
          }
        ],
        'text': 'Facility'
      }
    ],
    'name': 'Model Hospital',
    'telecom': [
      {
        'system': 'phone',
        'value': '5555550013',
        'use': 'work'
      }
    ],
    'address': [
      {
        'use': 'work',
        'text': '6276 Rockriver Drive\nKansas City, MO 64117\nUS',
        'line': [
          '6276 Rockriver Drive'
        ],
        'city': 'Kansas City',
        'state': 'MO',
        'postalCode': '64117',
        'country': 'US'
      },
      {
        'use': 'billing',
        'text': '6276 Rockriver Drive\nKansas City, MO 64117\nUS',
        'line': [
          '6276 Rockriver Drive'
        ],
        'city': 'Kansas City',
        'state': 'MO',
        'postalCode': '64117',
        'country': 'US'
      },
      {
        'use': 'billing',
        'text': '6276 Rockriver Drive\nKansas City, MO 64117\nUS',
        'line': [
          '6276 Rockriver Drive'
        ],
        'city': 'Kansas City',
        'state': 'MO',
        'postalCode': '64117',
        'country': 'US'
      },
      {
        'text': '6276 Rockriver Drive\nKansas City, MO 64117\nUS',
        'line': [
          '6276 Rockriver Drive'
        ],
        'city': 'Kansas City',
        'state': 'MO',
        'postalCode': '64117',
        'country': 'US'
      },
      {
        'text': '6276 Rockriver Drive\nKansas City, MO 64117\nUS',
        'line': [
          '6276 Rockriver Drive'
        ],
        'city': 'Kansas City',
        'state': 'MO',
        'postalCode': '64117',
        'country': 'US'
      }
    ]
  }
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