Retrieve History for Patient Identifiers
get
/HSDataService-web/api/3.2.0/patientapi/patients/history
This endpoint supports the retrieval of Histories for multiple Patient Identifiers passed. It returns History related information like Code, Category and other associated information.
Request
Supported Media Types
- application/json
- application/xml
Query Parameters
- id
-
Type:
arrayRequired:trueCollection Format:multiMinimum Number of Items:1Maximum Number of Items:2147483647Patient Identifiers-
Type:
integer(int64)
- 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:
objectModel for paginated collections of data.
- count
-
Type:
integer(int64)Number of objects in the 'items' collection. - hasMore
-
Type:
booleanDefault Value:falseA boolean indicating if more pages are available. - items
-
Type:
arrayitemsA collection of paged items. - links
-
Type:
arraylinksA collection of links containing hrefs to the current, next, and previous pages as applicable. - resourceType
-
Type:
stringIdentify the resource type
Nested Schema : links
Nested Schema : History
Type:
object- amount
-
Type:
objectQuantityModel for a Quantity object in CDM. - category
-
Type:
objectCodeableConceptModel that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text. - code
-
Type:
objectCodeableConceptModel that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text. - endDate
-
Type:
string(date-time)History End Date - familyMemberRelationshipTypeCode
-
Type:
objectFamilyMemberRelationshipType - frequency
-
Type:
objectQuantityModel for a Quantity object in CDM. - identifier
-
Type:
objectIdentifierIdentifier assigned by a given system - patient
-
Type:
objectLinkedReference - period
-
Type:
objectDateRange - startDate
-
Type:
string(date-time)History Start Date - subject
-
Type:
objectLinkedReference - valueCode
-
Type:
objectValueCode
Nested Schema : Quantity
Type:
objectModel for a Quantity object in CDM.
- code
-
Type:
stringThe quantity units symbol in syntax defined by the system. - description
-
Type:
stringThe quantity units description. - sysId
-
Type:
stringThe quantity units terminology system identifier. - sysName
-
Type:
stringThe quantity units terminology system name. - sysVersion
-
Type:
stringThe quantity units terminology system version. - units
-
Type:
stringThe quantity units displayable name. - value
-
Type:
stringThe numerical value of the quantity.
Nested Schema : CodeableConcept
Type:
objectModel that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text.
- coding
-
Type:
arraycodingRead Only:trueCode(s) defined by a terminology system. - text
-
Type:
stringPlain text representation of the concept.
Nested Schema : FamilyMemberRelationshipType
Type:
object- identifier
-
Type:
objectCdmIdentifierIdentifier assigned by a given system - type
-
Type:
objectCodeableConceptModel that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text.
Nested Schema : Identifier
Type:
objectIdentifier assigned by a given system
- system
-
Type:
stringSystem which assigned this identifier - value
-
Type:
stringIdentifier value
Nested Schema : LinkedReference
Type:
object- display
-
Type:
string - reference
-
Type:
string
Nested Schema : DateRange
Type:
object- end
-
Type:
string(date-time) - start
-
Type:
string(date-time)
Nested Schema : ValueCode
Type:
object- identifier
-
Type:
objectCdmIdentifierIdentifier assigned by a given system - value
-
Type:
objectCodeableConceptModel that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text.
Nested Schema : coding
Nested Schema : Coding
Type:
objectModel for a reference to a code defined by a terminology system.
- code
-
Type:
stringSymbol in syntax defined by the system. - description
-
Type:
stringDescription defined by the system. - display
-
Type:
stringRepresentation defined by the system. - sysId
-
Type:
stringIdentity of the terminology system. - sysName
-
Type:
stringName of the terminology system. - sysVersion
-
Type:
stringVersion of the system - if relevant.
Nested Schema : CdmIdentifier
Type:
objectIdentifier assigned by a given system
- system
-
Type:
stringSystem which assigned this identifier - value
-
Type:
stringIdentifier value
400 Response
Invalid parameters supplied
404 Response
historys not found
Examples
The following example submits a GET request.
API URL
http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/patients/history?id=79&id=80
Example of Response Body
The following example shows the contents of the response body 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"
}
},
{
"identifier": {
"system": "CDM",
"value": "2"
},
"code": {
"coding": [
{
"code": "6865",
"display": "PH6865"
}
]
},
"category": {
"coding": [
{
"code": "PHTYPCD6865",
"display": "PHTYPNM6865"
}
]
},
"frequency": {
"units": "UOM1",
"code": "1"
},
"period": {
"start": "11/26/1976",
"end": "12/16/1976"
},
"patient": {
"reference": "/HSDataService-web/api/3.2.0/patientapi/patients/80"
}
}
],
"count": 2,
"hasMore": false,
"links": [
{
"rel": "self",
"href": "http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/patients/history?id=79&id=80"
}
]
}