Retrieve History for a Patient Identifier

get

/HSDataService-web/api/3.2.0/patientapi/patients/{id}/history

This endpoint supports the retrieval of History for a single Patient Identifier passed. It returns History related information like Code, Category and other associated information.

Request

Supported Media Types
  • application/json
  • application/xml
Path Parameters
id
Type: integer (int64)
Required: true
Patient Row ID
Query Parameters
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 : PageableCollectionHistory
Type: object
Model for paginated collections of data.
Nested Schema : items
Type: array
A collection of paged items.
Nested Schema : History
Type: object
Nested Schema : Quantity
Type: object
Model for a Quantity object in CDM.
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 : FamilyMemberRelationshipType
Type: object
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Nested Schema : LinkedReference
Type: object
Nested Schema : DateRange
Type: object
Nested Schema : ValueCode
Type: object
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.
Nested Schema : CdmIdentifier
Type: object
Identifier assigned by a given system
400 Response
Invalid parameters supplied
404 Response
history not found

Examples

The following example submits a GET request.

API URL

http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/patients/79/history

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "History",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "1"
      },
      "code": {
        "coding": [
          {
            "code": "9469",
            "display": "PH9469"
          }
        ]
      },
      "category": {
        "coding": [
          {
            "code": "PHTYPCD9469",
            "display": "PHTYPNM9469"
          }
        ]
      },
      "amount": {
        "units": "UOM1",
        "code": "1"
      },
      "frequency": {
        "units": "UOM1",
        "code": "1"
      },
      "period": {
        "start": "02/11/2026",
        "end": "03/03/2026"
      },
      "patient": {
        "reference": "/HSDataService-web/api/3.2.0/patientapi/patients/79"
      }
    }
  ],
  "count": 1,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/patients/79/history"
    }
  ]
}