Patient info
Patient info contains information about different information belonging to the patient. Cannot be created by itself, but will be created as soon as there exists one or more resource belonging to a patient.
| Field | Type | Required | Description |
|---|---|---|---|
| id | Int |
x | The ID of the resource |
| communicationNeeds | List<CommunicationNeed> |
List of needs the patient may have regarding communication, can be empty |
Use
Read patient info with GET-request:
GET https://test.patient-info.hit.nhn.no/api/patient-info/v1/patientInfo
Response:
{
"id": 2323,
"communicationNeeds": [
{
"metadata": {
"resourceId": 123123,
"version": 1,
"patientInfoId": 2323,
"lastUpdated": "2025-03-05T06:41:27.217541Z",
"lastUpdatedBy": {
"userType": "HEALTH_CARE_PROFESSIONAL",
"orgNr": "998570328",
"orgName": null,
"treatmentFacilityName": "Andeby Helsestasjon",
"hprNr": "222200063",
"hprRole": "LE",
"name": "Lillehagen, Rolf Fos"
}
},
"code": {
"code": "KJ_KOMMUNIKASJON_1",
"codeSystem": "KJ_KOMMUNIKASJON",
"display": "Sterkt hørselhemmet"
},
"comment": "Slight hearing on right ear",
"languages": null,
"status": true
},
{
"metadata": {
"resourceId": 123124,
"version": 1,
"patientInfoId": 2323,
"lastUpdated": "2025-03-05T06:41:27.217541Z",
"lastUpdatedBy": {
"userType": "HEALTH_CARE_PROFESSIONAL",
"orgNr": "998570328",
"orgName": null,
"treatmentFacilityName": "Andeby Helsestasjon",
"hprNr": "222200063",
"hprRole": "LE",
"name": "Lillehagen, Rolf Fos"
}
},
"code": {
"code": "KJ_KOMMUNIKASJON_7",
"display": "Trenger tolk",
"codeSystem": "KJ_KOMMUNIKASJON"
},
"comment": null,
"languages": [
{
"code": "ALN",
"display": "Albansk",
"codeSystem": "VOLVEN_3303"
}
],
"status": true
}
]
}