POST api/Patient/PatientFamilyUpdate

Request Information

URI Parameters

None.

Body Parameters

PatientFamilyUpdateRequest
NameDescriptionTypeAdditional information
PatientFamily

PatientFamily

None.

PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientFamily": {
    "PatientFamilyID": "3c1602e4-fc2d-490e-94b2-499a4f456d23",
    "RelationshipID": "86d46168-fd78-409d-b9c3-c1174647e69f",
    "GenderID": "5b7b5caf-c8e0-42ce-9371-9c2c80942aaa",
    "Name": "sample string 2",
    "HealthIssues": "sample string 3",
    "Alive": true,
    "BirthDate": "2026-02-28T15:35:06.6625882+03:00",
    "Notes": "sample string 4"
  },
  "PatientID": "6c546716-343e-4291-a72e-f5676035d55c",
  "WebApiVersion": 2,
  "Language": "sample string 3"
}

application/xml, text/xml

Sample:
<PatientFamilyUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <Language>sample string 3</Language>
  <PatientID>6c546716-343e-4291-a72e-f5676035d55c</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientFamily>
    <Alive>true</Alive>
    <BirthDate>2026-02-28T15:35:06.6625882+03:00</BirthDate>
    <GenderID>5b7b5caf-c8e0-42ce-9371-9c2c80942aaa</GenderID>
    <HealthIssues>sample string 3</HealthIssues>
    <Name>sample string 2</Name>
    <Notes>sample string 4</Notes>
    <PatientFamilyID>3c1602e4-fc2d-490e-94b2-499a4f456d23</PatientFamilyID>
    <RelationshipID>86d46168-fd78-409d-b9c3-c1174647e69f</RelationshipID>
  </PatientFamily>
</PatientFamilyUpdateRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PatientFamilyResponse
NameDescriptionTypeAdditional information
PatientFamily

PatientFamily

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "PatientFamily": {
    "PatientFamilyID": "4354a9b2-ae0b-4be4-b12f-e8922a3bea7e",
    "RelationshipID": "4e7c7681-18af-447d-8adc-d7c218a447eb",
    "GenderID": "d43afed7-ab2b-4e9c-966d-eec2f501a3fd",
    "Name": "sample string 2",
    "HealthIssues": "sample string 3",
    "Alive": true,
    "BirthDate": "2026-02-28T15:35:06.6625882+03:00",
    "Notes": "sample string 4"
  },
  "WebApiVersion": 1
}

application/xml, text/xml

Sample:
<PatientFamilyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <WebApiVersion>1</WebApiVersion>
  <PatientFamily>
    <Alive>true</Alive>
    <BirthDate>2026-02-28T15:35:06.6625882+03:00</BirthDate>
    <GenderID>d43afed7-ab2b-4e9c-966d-eec2f501a3fd</GenderID>
    <HealthIssues>sample string 3</HealthIssues>
    <Name>sample string 2</Name>
    <Notes>sample string 4</Notes>
    <PatientFamilyID>4354a9b2-ae0b-4be4-b12f-e8922a3bea7e</PatientFamilyID>
    <RelationshipID>4e7c7681-18af-447d-8adc-d7c218a447eb</RelationshipID>
  </PatientFamily>
</PatientFamilyResponse>