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": "8b0c6293-28f0-40b3-b701-659736076ad0",
    "RelationshipID": "a238d0cc-5ff9-4ac2-a1df-3f9af420fea4",
    "GenderID": "6fbc6a12-bbf0-4633-91eb-c8206545fa43",
    "Name": "sample string 2",
    "HealthIssues": "sample string 3",
    "Alive": true,
    "BirthDate": "2026-04-24T14:22:53.0456452+03:00",
    "Notes": "sample string 4"
  },
  "PatientID": "7b588db7-1e88-495a-ab9f-0beac7df9ad3",
  "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>7b588db7-1e88-495a-ab9f-0beac7df9ad3</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientFamily>
    <Alive>true</Alive>
    <BirthDate>2026-04-24T14:22:53.0456452+03:00</BirthDate>
    <GenderID>6fbc6a12-bbf0-4633-91eb-c8206545fa43</GenderID>
    <HealthIssues>sample string 3</HealthIssues>
    <Name>sample string 2</Name>
    <Notes>sample string 4</Notes>
    <PatientFamilyID>8b0c6293-28f0-40b3-b701-659736076ad0</PatientFamilyID>
    <RelationshipID>a238d0cc-5ff9-4ac2-a1df-3f9af420fea4</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": "f0e98242-e7ec-4711-ac74-ddec0f486136",
    "RelationshipID": "f8fa74e5-2ac8-4258-8da5-442460a60935",
    "GenderID": "4efb133e-54ea-40d0-a9df-1ec3adb67236",
    "Name": "sample string 2",
    "HealthIssues": "sample string 3",
    "Alive": true,
    "BirthDate": "2026-04-24T14:22:53.0456452+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-04-24T14:22:53.0456452+03:00</BirthDate>
    <GenderID>4efb133e-54ea-40d0-a9df-1ec3adb67236</GenderID>
    <HealthIssues>sample string 3</HealthIssues>
    <Name>sample string 2</Name>
    <Notes>sample string 4</Notes>
    <PatientFamilyID>f0e98242-e7ec-4711-ac74-ddec0f486136</PatientFamilyID>
    <RelationshipID>f8fa74e5-2ac8-4258-8da5-442460a60935</RelationshipID>
  </PatientFamily>
</PatientFamilyResponse>