Retrieve Patient for a Subject Record id

get

/ohfapi/cg/v3.3/subjectapi/subjects/{id}/patients

This endpoint supports the retrieval of Patient details for a Subject Record (row) id. It returns Subject Patient details like Subject Patient Demographics and other Subject Patient associated information.

Request

Supported Media Types
Path Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : Patient
Type: object
Model for a Patient object in CDM.
Show Source
Nested Schema : Address
Type: object
Model for a postal address.
Show Source
Nested Schema : LinkedReference
Type: object
Show Source
Nested Schema : CodeableConcept
Type: object
Model that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text.
Show Source
Nested Schema : identifiers
Type: array
A list of identifiers assigned to this patient
Show Source
Nested Schema : HumanName
Type: object
Model for a name of a human with text and parts information.
Show Source
Nested Schema : Telecom
Type: object
Show Source
Nested Schema : line
Type: array
Street name, number, direction & P.O. Box etc.
Show Source
Nested Schema : coding
Type: array
Read Only: true
Code(s) defined by a terminology system.
Show Source
Nested Schema : Coding
Type: object
Model for a reference to a code defined by a terminology system.
Show Source
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Show Source
Nested Schema : given
Type: array
Given names (not always 'first'). Includes middle names.
Show Source

400 Response

Invalid parameter supplied

404 Response

Subject's Patient not found
Back to Top

Examples

The following example submits a GET request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/subjectapi/subjects/4/patients

Example of Response Body

The following example shows the response returned in JSON format.

{
  "identifiers": [
    {
      "system": "CDM",
      "value": "4"
    },
    {
      "system": "Customer Defined",
      "value": "P44528"
    }
  ],
  "name": {
    "text": "Maria Isabella Sanchez",
    "family": "Sanchez",
    "given": [
      "Maria",
      "Isabella"
    ]
  },
  "telecom": {
    "value": "info@oracle.com",
    "use": {
      "coding": [
        {
          "code": "CNTCT_INFO_SUBTYP_EML",
          "display": "Email",
          "description": "Communicate electronically on the computer",
          "sysId": "EHA_CUSTOM_CD_SYS",
          "sysName": "EHA Custom Code System",
          "sysVersion": "1"
        }
      ]
    }
  },
  "gender": {
    "coding": [
      {
        "code": "0",
        "display": "Female",
        "description": "Female",
        "sysId": "EHA_CUSTOM_CD_SYS",
        "sysName": "EHA Custom Code System",
        "sysVersion": "1"
      }
    ]
  },
  "birthDate": "02/09/1945",
  "deceasedBoolean": false,
  "maritalStatus": {
    "coding": [
      {
        "code": "1",
        "display": "Married",
        "description": "Married",
        "sysId": "EHA_CUSTOM_CD_SYS",
        "sysName": "EHA Custom Code System",
        "sysVersion": "1"
      }
    ]
  },
  "address": {
    "line": [
      "885 Centre St.",
      "Apt 721",
      "-"
    ],
    "city": "Newton",
    "district": "Middlesex",
    "state": {
      "coding": [
        {
          "code": "MA",
          "display": "Massachusetts",
          "description": "Massachusetts",
          "sysId": "EHA_CUSTOM_CD_SYS",
          "sysName": "EHA Custom Code System",
          "sysVersion": "1"
        }
      ]
    },
    "postalCode": "02467",
    "country": {
      "coding": [
        {
          "code": "1",
          "display": "USA",
          "description": "United State of America",
          "sysId": "EHA_CUSTOM_CD_SYS",
          "sysName": "EHA Custom Code System",
          "sysVersion": "1"
        }
      ]
    }
  },
  "race": {
    "reference": "/ohfapi/cg/v3.3/patientapi/patients/4/race"
  },
  "ethnicity": {
    "reference": "/ohfapi/cg/v3.3/patientapi/patients/4/ethnicity"
  },
  "subject": {
    "reference": "/ohfapi/cg/v3.3/patientapi/patients/4/subjects"
  }
}
Back to Top