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": "170cc501-2a39-48a9-aa14-b9c7bdcb7ec3",
"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>170cc501-2a39-48a9-aa14-b9c7bdcb7ec3</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": "fa26152a-076f-4efa-a5ac-b5ec879013e0",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"BirthDate": "2026-06-18T12:14:56.9180261+03:00",
"GenderID": "9516edcd-6aa0-4083-af86-8054d8731e3c",
"BloodTypeID": "04268222-a75f-46b4-9218-4366c486d39a",
"MaritalStatusID": "38b69338-58d0-457d-a5b8-cfa68719a244",
"Phone": "sample string 4",
"NationalID": "sample string 5",
"Height": 1.0,
"PhoneCountryID": "20835695-05cf-4d91-af8a-99ed67f41978",
"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": "6e9c8ea4-4111-4b54-a05e-dd3b8528274c",
"VitalName": "sample string 2",
"TimeStamp": "2026-06-18T12:14:56.9335199+03:00",
"VitalValue": "sample string 4"
},
{
"VitalID": "6e9c8ea4-4111-4b54-a05e-dd3b8528274c",
"VitalName": "sample string 2",
"TimeStamp": "2026-06-18T12:14:56.9335199+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-06-18T12:14:56.9180261+03:00</BirthDate>
<BloodTypeID>04268222-a75f-46b4-9218-4366c486d39a</BloodTypeID>
<FirstName>sample string 2</FirstName>
<GenderID>9516edcd-6aa0-4083-af86-8054d8731e3c</GenderID>
<Height>1</Height>
<LastName>sample string 3</LastName>
<LastVitalValues>
<PatientAlertVitalStringLog>
<TimeStamp>2026-06-18T12:14:56.9335199+03:00</TimeStamp>
<VitalID>6e9c8ea4-4111-4b54-a05e-dd3b8528274c</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue>sample string 4</VitalValue>
</PatientAlertVitalStringLog>
<PatientAlertVitalStringLog>
<TimeStamp>2026-06-18T12:14:56.9335199+03:00</TimeStamp>
<VitalID>6e9c8ea4-4111-4b54-a05e-dd3b8528274c</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue>sample string 4</VitalValue>
</PatientAlertVitalStringLog>
</LastVitalValues>
<MaritalStatusID>38b69338-58d0-457d-a5b8-cfa68719a244</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>fa26152a-076f-4efa-a5ac-b5ec879013e0</PatientID>
<Phone>sample string 4</Phone>
<PhoneCountryID>20835695-05cf-4d91-af8a-99ed67f41978</PhoneCountryID>
<PhotoLink>sample string 6</PhotoLink>
</Patient>
</DoctorPatientResponse>