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": "a52e8485-140e-4622-8990-cf7582048115",
    "RelationshipID": "c1589f5a-ef13-4dcf-a32d-05e30e69c5a0",
    "GenderID": "3453c496-3e3d-4921-ba22-ad02d0e7b0f6",
    "Name": "sample string 2",
    "HealthIssues": "sample string 3",
    "Alive": true,
    "BirthDate": "2026-06-18T12:14:57.9217958+03:00",
    "Notes": "sample string 4"
  },
  "PatientID": "bac85977-e8c9-4c3e-be42-43a6fa8517e1",
  "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>bac85977-e8c9-4c3e-be42-43a6fa8517e1</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientFamily>
    <Alive>true</Alive>
    <BirthDate>2026-06-18T12:14:57.9217958+03:00</BirthDate>
    <GenderID>3453c496-3e3d-4921-ba22-ad02d0e7b0f6</GenderID>
    <HealthIssues>sample string 3</HealthIssues>
    <Name>sample string 2</Name>
    <Notes>sample string 4</Notes>
    <PatientFamilyID>a52e8485-140e-4622-8990-cf7582048115</PatientFamilyID>
    <RelationshipID>c1589f5a-ef13-4dcf-a32d-05e30e69c5a0</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": "a6a22eec-4a39-46d8-8c6e-240e0bae4dfb",
    "RelationshipID": "90764926-1d64-4b08-bd17-bfae8502a75b",
    "GenderID": "68785905-3fde-4e16-97c6-b9a4fdb4281c",
    "Name": "sample string 2",
    "HealthIssues": "sample string 3",
    "Alive": true,
    "BirthDate": "2026-06-18T12:14:57.9217958+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-06-18T12:14:57.9217958+03:00</BirthDate>
    <GenderID>68785905-3fde-4e16-97c6-b9a4fdb4281c</GenderID>
    <HealthIssues>sample string 3</HealthIssues>
    <Name>sample string 2</Name>
    <Notes>sample string 4</Notes>
    <PatientFamilyID>a6a22eec-4a39-46d8-8c6e-240e0bae4dfb</PatientFamilyID>
    <RelationshipID>90764926-1d64-4b08-bd17-bfae8502a75b</RelationshipID>
  </PatientFamily>
</PatientFamilyResponse>