Get a list of related person records

get

/RelatedPerson

Retrieves related person records that meet supplied query parameters.

This operation supports the following authorization types:
  • Provider
  • Patient
  • System

Request

Query Parameters
  • The logical resource ID associated with the resource. This parameter is required if neither of the patient nor identifier parameters are used. Example: _id=1234-5678
  • A related person identifier. This parameter is required if neither of the patient nor _id parameters are used. The value must include both a system and a code.
    Example: identifier=urn:oid:2.16.840.1.113883.3.13.6|URN:CERNER:...:PI98N2FK5TN
  • A reference to a patient associated with the related person. This parameter is required if neither of the _id nor identifier parameters are used. Example: patient=14067892
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

Example retrieval by identifier. Example Request:
GET https://fhir-open.cerner.com/dstu2/ec2458f2-1e24-41c8-b71b-0e701af7583d/RelatedPerson?identifier=urn%3Aoid%3A2.16.840.1.113883.3.13.6%7CURN%3ACERNER%3AIDENTITY-FEDERATION%3AREALM%3AEC2458F2-1E24-41C8-B71B-0E701AF7583D-CH%3APRINCIPAL%3A332TE8FP7VD3RT4C
Example Response:

  {
    'resourceType': 'Bundle',
    'id': 'c9e2d518-3ae5-44f2-a61f-ccc68e938ad0',
    'type': 'searchset',
    'total': 1,
    'link': [
      {
        'relation': 'self',
        'url': 'https://fhir-open.cerner.com/dstu2/ec2458f2-1e24-41c8-b71b-0e701af7583d/RelatedPerson'\
              '?identifier=urn%3Aoid%3A2.16.840.1.113883.3.13.6%7CURN%3ACERNER%3AIDENTITY-FEDERATION%3A'\
              'REALM%3AE8A84236-C258-4952-98B7-A6FF8A9C587A-CH%3APRINCIPAL%3A332TE8FP7VD3RT4C'
      }
    ],
    'entry': [
      {
        'fullUrl': 'https://fhir-open.cerner.com/dstu2/ec2458f2-1e24-41c8-b71b-0e701af7583d/RelatedPerson/490017058',
        'resource': {
          'resourceType': 'RelatedPerson',
          'id': '490017058',
          'meta': {
            'versionId': '6'
          },
          'text': {
            'status': 'generated',
            'div': '<div><p><b>RelatedPerson</b></p><p><b>Name</b>: SMART, HAILEY</p><p><b>DOB</b>: Dec  2, 2003</p>'\
                  '<p><b>Sex</b>: Female</p></div>'
          },
          'identifier': [
            {
              'use': 'usual',
              'type': {
                'coding': [
                  {
                    'system': 'http://hl7.org/fhir/v2/0203',
                    'code': 'AN',
                    'display': 'Account number',
                    'userSelected': false
                  }
                ],
                'text': 'Federated Person Principal'
              },
              'system': 'urn:oid:2.16.840.1.113883.3.13.6',
              'value': 'URN:CERNER:IDENTITY-FEDERATION:REALM:E8A84236-C258-4952-98B7-A6FF8A9C587A-CH:'\
                      'PRINCIPAL:332TE8FP7VD3RT4C',
              '_value': {
                'extension': [
                  {
                    'url': 'http://hl7.org/fhir/StructureDefinition/rendered-value',
                    'valueString': 'URN:CERNER:IDENTITY-FEDERATION:REALM:E8A84236-C258-4952-98B7-'\
                                  'A6FF8A9C587A-CH:PRINCIPAL:332TE8FP7VD3RT4C'
                  }
                ]
              },
              'period': {
                'start': '2020-06-30T20:26:38.000Z'
              }
            }
          ],
          'patient': {
            'reference': 'Patient/12724066',
            'display': 'SMART, NANCY'
          },
          'name': {
            'use': 'official',
            'text': 'SMART, HAILEY',
            'family': [
              'SMART'
            ],
            'given': [
              'HAILEY'
            ],
            'period': {
              'start': '2019-12-26T15:15:35.000Z'
            }
          },
          'telecom': [
            {
              'system': 'phone',
              'value': '8168888886',
              'use': 'home',
              'period': {
                'start': '2019-12-26T15:15:35.000Z'
              }
            },
            {
              'system': 'email',
              'value': 'haileysmart@yopmail.com',
              'use': 'home',
              'period': {
                'start': '2020-06-30T19:56:19.000Z'
              }
            }
          ],
          'gender': 'female',
          'birthDate': '2003-12-02',
          'address': [
            {
              'use': 'home',
              'text': '12345 Main St\nKansas City, MO 64116\nUS',
              'line': [
                '12345 Main St'
              ],
              'city': 'Kansas City',
              'district': 'Jackson',
              'state': 'MO',
              'postalCode': '64116',
              'country': 'US',
              'period': {
                'start': '2019-12-26T15:15:03.000Z'
              }
            }
          ],
          'period': {
            'start': '2019-12-26T16:06:26.000Z'
          }
        }
      }
    ]
  }
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