POST api/Patient/GetPatientInfo

Request Information

URI Parameters

None.

Body Parameters

RequestBase
NameDescriptionTypeAdditional information
PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientID": "47a4752f-05c8-4bd9-9f49-fb896d833942",
  "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>47a4752f-05c8-4bd9-9f49-fb896d833942</PatientID>
  <WebApiVersion>2</WebApiVersion>
</RequestBase>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DoctorPatientResponse
NameDescriptionTypeAdditional information
Patient

DoctorPatient

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Patient": {
    "PatientID": "edf3c04e-6d82-4f81-a7fe-4751c918e1e0",
    "FirstName": "sample string 2",
    "LastName": "sample string 3",
    "BirthDate": "2026-08-12T11:43:56.1462486+03:00",
    "GenderID": "66f7e3ef-910f-4cc0-bd0a-bce1631d9c5f",
    "BloodTypeID": "c364863b-0fbb-49a8-87df-c33d1986807b",
    "MaritalStatusID": "cc0a6804-d828-4f3e-8652-2c0c4e063879",
    "Phone": "sample string 4",
    "NationalID": "sample string 5",
    "Height": 1.0,
    "PhoneCountryID": "ba64312e-d19d-4168-94ff-b6f1348e58eb",
    "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": "7b449880-b787-4da0-8697-6ac23fea1200",
        "VitalName": "sample string 2",
        "TimeStamp": "2026-08-12T11:43:56.1462486+03:00",
        "VitalValue": "sample string 4"
      },
      {
        "VitalID": "7b449880-b787-4da0-8697-6ac23fea1200",
        "VitalName": "sample string 2",
        "TimeStamp": "2026-08-12T11:43:56.1462486+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-08-12T11:43:56.1462486+03:00</BirthDate>
    <BloodTypeID>c364863b-0fbb-49a8-87df-c33d1986807b</BloodTypeID>
    <FirstName>sample string 2</FirstName>
    <GenderID>66f7e3ef-910f-4cc0-bd0a-bce1631d9c5f</GenderID>
    <Height>1</Height>
    <LastName>sample string 3</LastName>
    <LastVitalValues>
      <PatientAlertVitalStringLog>
        <TimeStamp>2026-08-12T11:43:56.1462486+03:00</TimeStamp>
        <VitalID>7b449880-b787-4da0-8697-6ac23fea1200</VitalID>
        <VitalName>sample string 2</VitalName>
        <VitalValue>sample string 4</VitalValue>
      </PatientAlertVitalStringLog>
      <PatientAlertVitalStringLog>
        <TimeStamp>2026-08-12T11:43:56.1462486+03:00</TimeStamp>
        <VitalID>7b449880-b787-4da0-8697-6ac23fea1200</VitalID>
        <VitalName>sample string 2</VitalName>
        <VitalValue>sample string 4</VitalValue>
      </PatientAlertVitalStringLog>
    </LastVitalValues>
    <MaritalStatusID>cc0a6804-d828-4f3e-8652-2c0c4e063879</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>edf3c04e-6d82-4f81-a7fe-4751c918e1e0</PatientID>
    <Phone>sample string 4</Phone>
    <PhoneCountryID>ba64312e-d19d-4168-94ff-b6f1348e58eb</PhoneCountryID>
    <PhotoLink>sample string 6</PhotoLink>
  </Patient>
</DoctorPatientResponse>