POST api/Patient/GetPatientInfo
Request Information
URI Parameters
None.
Body Parameters
RequestBase| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientID": "90eed0f7-fe55-4b48-b5fa-012afe5397ff",
"WebApiVersion": 2,
"Language": "sample string 3"
}
application/xml, text/xml
Sample:
<RequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 3</Language> <PatientID>90eed0f7-fe55-4b48-b5fa-012afe5397ff</PatientID> <WebApiVersion>2</WebApiVersion> </RequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DoctorPatientResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Patient | DoctorPatient |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Patient": {
"PatientID": "915d99ac-a420-42eb-9924-733823081943",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"BirthDate": "2026-02-28T15:36:46.0405131+03:00",
"GenderID": "8bfa7d4a-3b4d-4348-b424-48166c34a802",
"BloodTypeID": "2bffaad9-47f6-48f9-96e3-793bf7c80db5",
"MaritalStatusID": "cec37f19-9435-4b61-9d4f-e060da386c94",
"Phone": "sample string 4",
"NationalID": "sample string 5",
"Height": 1.0,
"PhoneCountryID": "b1d65a05-e8ab-4f57-a34c-0a3f4a1412b5",
"PhotoLink": "sample string 6",
"Menu": [
{
"Code": 1,
"Name": "sample string 2",
"ResourceKey": "sample string 3"
},
{
"Code": 1,
"Name": "sample string 2",
"ResourceKey": "sample string 3"
}
],
"LastVitalValues": [
{
"VitalID": "6955fceb-a663-40db-ae86-6b75cc22309a",
"VitalName": "sample string 2",
"TimeStamp": "2026-02-28T15:36:46.0405131+03:00",
"VitalValue": "sample string 4"
},
{
"VitalID": "6955fceb-a663-40db-ae86-6b75cc22309a",
"VitalName": "sample string 2",
"TimeStamp": "2026-02-28T15:36:46.0405131+03:00",
"VitalValue": "sample string 4"
}
]
},
"WebApiVersion": 1
}
application/xml, text/xml
Sample:
<DoctorPatientResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>1</WebApiVersion>
<Patient>
<BirthDate>2026-02-28T15:36:46.0405131+03:00</BirthDate>
<BloodTypeID>2bffaad9-47f6-48f9-96e3-793bf7c80db5</BloodTypeID>
<FirstName>sample string 2</FirstName>
<GenderID>8bfa7d4a-3b4d-4348-b424-48166c34a802</GenderID>
<Height>1</Height>
<LastName>sample string 3</LastName>
<LastVitalValues>
<PatientAlertVitalStringLog>
<TimeStamp>2026-02-28T15:36:46.0405131+03:00</TimeStamp>
<VitalID>6955fceb-a663-40db-ae86-6b75cc22309a</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue>sample string 4</VitalValue>
</PatientAlertVitalStringLog>
<PatientAlertVitalStringLog>
<TimeStamp>2026-02-28T15:36:46.0405131+03:00</TimeStamp>
<VitalID>6955fceb-a663-40db-ae86-6b75cc22309a</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue>sample string 4</VitalValue>
</PatientAlertVitalStringLog>
</LastVitalValues>
<MaritalStatusID>cec37f19-9435-4b61-9d4f-e060da386c94</MaritalStatusID>
<Menu>
<Menu>
<Code>1</Code>
<Name>sample string 2</Name>
<ResourceKey>sample string 3</ResourceKey>
</Menu>
<Menu>
<Code>1</Code>
<Name>sample string 2</Name>
<ResourceKey>sample string 3</ResourceKey>
</Menu>
</Menu>
<NationalID>sample string 5</NationalID>
<PatientID>915d99ac-a420-42eb-9924-733823081943</PatientID>
<Phone>sample string 4</Phone>
<PhoneCountryID>b1d65a05-e8ab-4f57-a34c-0a3f4a1412b5</PhoneCountryID>
<PhotoLink>sample string 6</PhotoLink>
</Patient>
</DoctorPatientResponse>