POST api/Patient/PatientFamilyUpdate
Request Information
URI Parameters
None.
Body Parameters
PatientFamilyUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientFamily | PatientFamily |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientFamily": {
"PatientFamilyID": "2c3bf96d-f0fe-4b96-9238-523e0933bec1",
"RelationshipID": "c3b9212a-c0a9-4e6f-b19d-78b1b8e18ce0",
"GenderID": "645c21c5-002f-4573-afee-ec44d746fe08",
"Name": "sample string 2",
"HealthIssues": "sample string 3",
"Alive": true,
"BirthDate": "2026-08-12T11:43:56.3493796+03:00",
"Notes": "sample string 4"
},
"PatientID": "49a756a0-0d4d-47d7-ab9e-a9c0ce7f4b84",
"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>49a756a0-0d4d-47d7-ab9e-a9c0ce7f4b84</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientFamily>
<Alive>true</Alive>
<BirthDate>2026-08-12T11:43:56.3493796+03:00</BirthDate>
<GenderID>645c21c5-002f-4573-afee-ec44d746fe08</GenderID>
<HealthIssues>sample string 3</HealthIssues>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<PatientFamilyID>2c3bf96d-f0fe-4b96-9238-523e0933bec1</PatientFamilyID>
<RelationshipID>c3b9212a-c0a9-4e6f-b19d-78b1b8e18ce0</RelationshipID>
</PatientFamily>
</PatientFamilyUpdateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PatientFamilyResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientFamily | PatientFamily |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientFamily": {
"PatientFamilyID": "68b047aa-0c2e-44c7-89c4-91176bd41b01",
"RelationshipID": "eec6f12a-6dce-44dc-b561-bb5f059c22c4",
"GenderID": "c06da215-3980-4ec7-a5c9-69ac6b28ef64",
"Name": "sample string 2",
"HealthIssues": "sample string 3",
"Alive": true,
"BirthDate": "2026-08-12T11:43:56.3650021+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-08-12T11:43:56.3650021+03:00</BirthDate>
<GenderID>c06da215-3980-4ec7-a5c9-69ac6b28ef64</GenderID>
<HealthIssues>sample string 3</HealthIssues>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<PatientFamilyID>68b047aa-0c2e-44c7-89c4-91176bd41b01</PatientFamilyID>
<RelationshipID>eec6f12a-6dce-44dc-b561-bb5f059c22c4</RelationshipID>
</PatientFamily>
</PatientFamilyResponse>