POST api/Patient/GetPatientFamily
Request Information
URI Parameters
None.
Body Parameters
PageRequestBase| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageNumber": 1,
"PageCount": 2,
"PatientID": "ba5c0fd3-1d1e-4919-a36a-b198382bcac1",
"WebApiVersion": 4,
"Language": "sample string 5"
}
application/xml, text/xml
Sample:
<PageRequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 5</Language> <PatientID>ba5c0fd3-1d1e-4919-a36a-b198382bcac1</PatientID> <WebApiVersion>4</WebApiVersion> <PageCount>2</PageCount> <PageNumber>1</PageNumber> </PageRequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientFamilyResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientFamily | Collection of PatientFamily |
None. |
|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| TotalCount | integer |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientFamily": [
{
"PatientFamilyID": "c405511d-e20b-43c1-a403-a020f4b93cd9",
"RelationshipID": "d89e5201-642f-45b6-9494-47e57e68fd70",
"GenderID": "263ed45c-0fd1-4042-9ac1-5030d310f6a0",
"Name": "sample string 2",
"HealthIssues": "sample string 3",
"Alive": true,
"BirthDate": "2026-06-18T12:14:57.8749037+03:00",
"Notes": "sample string 4"
},
{
"PatientFamilyID": "c405511d-e20b-43c1-a403-a020f4b93cd9",
"RelationshipID": "d89e5201-642f-45b6-9494-47e57e68fd70",
"GenderID": "263ed45c-0fd1-4042-9ac1-5030d310f6a0",
"Name": "sample string 2",
"HealthIssues": "sample string 3",
"Alive": true,
"BirthDate": "2026-06-18T12:14:57.8749037+03:00",
"Notes": "sample string 4"
}
],
"PageNumber": 1,
"PageCount": 2,
"TotalCount": 3,
"WebApiVersion": 4
}
application/xml, text/xml
Sample:
<GetPatientFamilyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>4</WebApiVersion>
<PageCount>2</PageCount>
<PageNumber>1</PageNumber>
<TotalCount>3</TotalCount>
<PatientFamily>
<PatientFamily>
<Alive>true</Alive>
<BirthDate>2026-06-18T12:14:57.8749037+03:00</BirthDate>
<GenderID>263ed45c-0fd1-4042-9ac1-5030d310f6a0</GenderID>
<HealthIssues>sample string 3</HealthIssues>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<PatientFamilyID>c405511d-e20b-43c1-a403-a020f4b93cd9</PatientFamilyID>
<RelationshipID>d89e5201-642f-45b6-9494-47e57e68fd70</RelationshipID>
</PatientFamily>
<PatientFamily>
<Alive>true</Alive>
<BirthDate>2026-06-18T12:14:57.8749037+03:00</BirthDate>
<GenderID>263ed45c-0fd1-4042-9ac1-5030d310f6a0</GenderID>
<HealthIssues>sample string 3</HealthIssues>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<PatientFamilyID>c405511d-e20b-43c1-a403-a020f4b93cd9</PatientFamilyID>
<RelationshipID>d89e5201-642f-45b6-9494-47e57e68fd70</RelationshipID>
</PatientFamily>
</PatientFamily>
</GetPatientFamilyResponse>