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": "5d6e34f9-e51f-4fe5-9e01-248f712fb9a9",
"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>5d6e34f9-e51f-4fe5-9e01-248f712fb9a9</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": "2420cea7-5d0e-4d69-9ad8-4ae9e26fa4b9",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"BirthDate": "2026-04-24T14:24:49.0861267+03:00",
"GenderID": "541af3bb-8dc8-4e85-b6d3-842d63083162",
"BloodTypeID": "63b106ea-ccfd-4902-9f67-1f575e74f466",
"MaritalStatusID": "00fd9660-8998-4d3d-a418-a49f3fc24d9b",
"Phone": "sample string 4",
"NationalID": "sample string 5",
"Height": 1.0,
"PhoneCountryID": "b83f72e2-4b15-446a-8ec7-9dbf8c745e64",
"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": "910e6646-512c-4467-8db3-73eee5479b75",
"VitalName": "sample string 2",
"TimeStamp": "2026-04-24T14:24:49.0861267+03:00",
"VitalValue": "sample string 4"
},
{
"VitalID": "910e6646-512c-4467-8db3-73eee5479b75",
"VitalName": "sample string 2",
"TimeStamp": "2026-04-24T14:24:49.0861267+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-04-24T14:24:49.0861267+03:00</BirthDate>
<BloodTypeID>63b106ea-ccfd-4902-9f67-1f575e74f466</BloodTypeID>
<FirstName>sample string 2</FirstName>
<GenderID>541af3bb-8dc8-4e85-b6d3-842d63083162</GenderID>
<Height>1</Height>
<LastName>sample string 3</LastName>
<LastVitalValues>
<PatientAlertVitalStringLog>
<TimeStamp>2026-04-24T14:24:49.0861267+03:00</TimeStamp>
<VitalID>910e6646-512c-4467-8db3-73eee5479b75</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue>sample string 4</VitalValue>
</PatientAlertVitalStringLog>
<PatientAlertVitalStringLog>
<TimeStamp>2026-04-24T14:24:49.0861267+03:00</TimeStamp>
<VitalID>910e6646-512c-4467-8db3-73eee5479b75</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue>sample string 4</VitalValue>
</PatientAlertVitalStringLog>
</LastVitalValues>
<MaritalStatusID>00fd9660-8998-4d3d-a418-a49f3fc24d9b</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>2420cea7-5d0e-4d69-9ad8-4ae9e26fa4b9</PatientID>
<Phone>sample string 4</Phone>
<PhoneCountryID>b83f72e2-4b15-446a-8ec7-9dbf8c745e64</PhoneCountryID>
<PhotoLink>sample string 6</PhotoLink>
</Patient>
</DoctorPatientResponse>