GET api/Patient/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

DetailedPatientInfoResponse
NameDescriptionTypeAdditional information
PatientId

integer

None.

Message

string

None.

PatientBasicInfo

PatientBasicInfo2

None.

Response Formats

application/json, text/json

Sample:
{
  "patientId": 1,
  "message": "sample string 1",
  "patientBasicInfo": {
    "name": "sample string 1",
    "surname": "sample string 2",
    "birthDate": "sample string 3",
    "gender": 1,
    "nationalPersonalId": "sample string 4",
    "telephoneNumber": "sample string 5",
    "deathDate": "2025-05-02T15:38:09.3844541+02:00",
    "isUnknownPerson": true,
    "address": {
      "street": "sample string 1",
      "zipCode": "sample string 2",
      "city": "sample string 3",
      "countryCode": "sample string 4"
    },
    "identifications": [
      {
        "type": "sample string 1",
        "value": "sample string 2",
        "validUntil": "sample string 3"
      },
      {
        "type": "sample string 1",
        "value": "sample string 2",
        "validUntil": "sample string 3"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<DetailedPatientInfoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eMedit.eDoktor.WebApi.Models.Api.Patient">
  <Message>sample string 1</Message>
  <PatientBasicInfo>
    <Address>
      <City>sample string 3</City>
      <CountryCode>sample string 4</CountryCode>
      <Street>sample string 1</Street>
      <ZipCode>sample string 2</ZipCode>
    </Address>
    <BirthDate>sample string 3</BirthDate>
    <DeathDate>2025-05-02T15:38:09.3844541+02:00</DeathDate>
    <Gender>M</Gender>
    <Identifications>
      <PatientIdentification>
        <Type>sample string 1</Type>
        <ValidUntil>sample string 3</ValidUntil>
        <Value>sample string 2</Value>
      </PatientIdentification>
      <PatientIdentification>
        <Type>sample string 1</Type>
        <ValidUntil>sample string 3</ValidUntil>
        <Value>sample string 2</Value>
      </PatientIdentification>
    </Identifications>
    <IsUnknownPerson>true</IsUnknownPerson>
    <Name>sample string 1</Name>
    <NationalPersonalId>sample string 4</NationalPersonalId>
    <Surname>sample string 2</Surname>
    <TelephoneNumber>sample string 5</TelephoneNumber>
  </PatientBasicInfo>
  <PatientId>1</PatientId>
</DetailedPatientInfoResponse>