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": "71625976-9421-409f-aa6e-2927d12a4079",
  "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>71625976-9421-409f-aa6e-2927d12a4079</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": "8daa0d34-5ef0-493f-b91a-1657590318e5",
    "FirstName": "sample string 2",
    "LastName": "sample string 3",
    "BirthDate": "2025-12-11T14:39:45.7882531+03:00",
    "GenderID": "74017c45-19af-4c4e-acd9-7c5bb53557c1",
    "BloodTypeID": "7f68185c-a8f1-436d-8764-ec94d6604832",
    "MaritalStatusID": "be0ba03e-7382-4c3c-84ec-6ce26a87cb44",
    "Phone": "sample string 4",
    "NationalID": "sample string 5",
    "Height": 1.0,
    "PhoneCountryID": "60ccf890-3be7-4bb0-895f-a0b0f536df31",
    "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": "25b5feea-6a6d-4da7-9289-0117ef606908",
        "VitalName": "sample string 2",
        "TimeStamp": "2025-12-11T14:39:45.7882531+03:00",
        "VitalValue": "sample string 4"
      },
      {
        "VitalID": "25b5feea-6a6d-4da7-9289-0117ef606908",
        "VitalName": "sample string 2",
        "TimeStamp": "2025-12-11T14:39:45.7882531+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>2025-12-11T14:39:45.7882531+03:00</BirthDate>
    <BloodTypeID>7f68185c-a8f1-436d-8764-ec94d6604832</BloodTypeID>
    <FirstName>sample string 2</FirstName>
    <GenderID>74017c45-19af-4c4e-acd9-7c5bb53557c1</GenderID>
    <Height>1</Height>
    <LastName>sample string 3</LastName>
    <LastVitalValues>
      <PatientAlertVitalStringLog>
        <TimeStamp>2025-12-11T14:39:45.7882531+03:00</TimeStamp>
        <VitalID>25b5feea-6a6d-4da7-9289-0117ef606908</VitalID>
        <VitalName>sample string 2</VitalName>
        <VitalValue>sample string 4</VitalValue>
      </PatientAlertVitalStringLog>
      <PatientAlertVitalStringLog>
        <TimeStamp>2025-12-11T14:39:45.7882531+03:00</TimeStamp>
        <VitalID>25b5feea-6a6d-4da7-9289-0117ef606908</VitalID>
        <VitalName>sample string 2</VitalName>
        <VitalValue>sample string 4</VitalValue>
      </PatientAlertVitalStringLog>
    </LastVitalValues>
    <MaritalStatusID>be0ba03e-7382-4c3c-84ec-6ce26a87cb44</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>8daa0d34-5ef0-493f-b91a-1657590318e5</PatientID>
    <Phone>sample string 4</Phone>
    <PhoneCountryID>60ccf890-3be7-4bb0-895f-a0b0f536df31</PhoneCountryID>
    <PhotoLink>sample string 6</PhotoLink>
  </Patient>
</DoctorPatientResponse>