Retrieve Clinical Encounters for Patient Identifiers

get

/HSDataService-web/api/3.2.0/patientapi/encounters

This endpoint supports the retrieval of Clinical Encounters for multiple Patient Identifiers passed. It returns Clinical Encounter information like Type, Encounter Number, Location and other Clinical Encounter associated information.

Request

Supported Media Types
  • application/json
  • application/xml
Query Parameters
id
Type: array
Required: true
Collection Format: multi
Minimum Number of Items: 1
Maximum Number of Items: 2147483647
Patient Identifiers
limit
Type: integer (int32)
Pagination query params: ?limit=2&offset=0
offset
Type: integer (int32)
Pagination query params: ?limit=2&offset=0

Response

Supported Media Types
  • application/json
  • application/xml
200 Response
successful operation
Body
Model for paginated collections of data.
Root Schema : PageableCollectionClinicalEncounter
Type: object
Model for paginated collections of data.
Nested Schema : items
Type: array
A collection of paged items.
Nested Schema : ClinicalEncounter
Type: object
Model for a clinical encounter object in CDM.
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Nested Schema : Location
Type: object
Nested Schema : LinkedReference
Type: object
Nested Schema : DateRange
Type: object
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.
Nested Schema : CdmIdentifier
Type: object
Identifier assigned by a given system
Nested Schema : coding
Type: array
Read Only: true
Code(s) defined by a terminology system.
Nested Schema : Coding
Type: object
Model for a reference to a code defined by a terminology system.
400 Response
Invalid parameters supplied
404 Response
encounter(s) not found

Examples

The following example submits a GET request.

API URL

http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/encounters?id=1&id=2&limit=2&offset=0

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
  "resourceType": "Encounter",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "1"
      },
      "type": {
        "coding": [
          {
            "code": "1",
            "display": "ENC_TYPE1",
            "description": "ENC_TYPE_DESC1",
            "sysId": "EHA_CUSTOM_CD_SYS",
            "sysName": "EHA Custom Code System",
            "sysVersion": "1"
          }
        ]
      },
      "location": {
        "identifier": {
          "system": "CDM",
          "value": "1"
        },
        "name": "FAC1",
        "type": {
          "coding": [
            {
              "code": "FAC_SUBTYP_RM",
              "display": "Room",
              "description": "A space allocated for a function within a building or a floor",
              "sysId": "EHA_CUSTOM_CD_SYS",
              "sysName": "EHA Custom Code System",
              "sysVersion": "1"
            }
          ]
        }
      },
      "patient": {
        "reference": "/HSDataService-web/api/3.2.0/patientapi/patients/1"
      },
      "period": {
        "start": "01/01/1998",
        "end": "12/01/1998"
      },
      "encounterNumber": "ENC1"
    },
    {
      "identifier": {
        "system": "CDM",
        "value": "2"
      },
      "type": {
        "coding": [
          {
            "code": "1",
            "display": "ENC_TYPE1",
            "description": "ENC_TYPE_DESC1",
            "sysId": "EHA_CUSTOM_CD_SYS",
            "sysName": "EHA Custom Code System",
            "sysVersion": "1"
          }
        ]
      },
      "location": {
        "identifier": {
          "system": "CDM",
          "value": "1"
        },
        "name": "FAC1",
        "type": {
          "coding": [
            {
              "code": "FAC_SUBTYP_RM",
              "display": "Room",
              "description": "A space allocated for a function within a building or a floor",
              "sysId": "EHA_CUSTOM_CD_SYS",
              "sysName": "EHA Custom Code System",
              "sysVersion": "1"
            }
          ]
        }
      },
      "patient": {
        "reference": "/HSDataService-web/api/3.2.0/patientapi/patients/1"
      },
      "period": {
        "start": "01/01/1998",
        "end": "12/01/1998"
      },
      "encounterNumber": "ENC1"
    }
  ],
  "count": 2,
  "hasMore": true,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/encounters?id=1&id=2&limit=2&offset=0"
    },
    {
      "rel": "next",
      "href": "http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/encounters?id=1&id=2&limit=2&offset=0"
    }
  ]
}