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": "07d10c43-6276-44c5-b4ee-d486d8ebe8ad",
"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>07d10c43-6276-44c5-b4ee-d486d8ebe8ad</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": "ac0b884f-e180-4f32-841d-f3ad7a381896",
"RelationshipID": "1b20f08d-0834-4ad7-8838-037db353ac78",
"GenderID": "dbf6a1ca-a85d-4a10-af8a-34136318b4d1",
"Name": "sample string 2",
"HealthIssues": "sample string 3",
"Alive": true,
"BirthDate": "2026-08-12T11:43:56.3493796+03:00",
"Notes": "sample string 4"
},
{
"PatientFamilyID": "ac0b884f-e180-4f32-841d-f3ad7a381896",
"RelationshipID": "1b20f08d-0834-4ad7-8838-037db353ac78",
"GenderID": "dbf6a1ca-a85d-4a10-af8a-34136318b4d1",
"Name": "sample string 2",
"HealthIssues": "sample string 3",
"Alive": true,
"BirthDate": "2026-08-12T11:43:56.3493796+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-08-12T11:43:56.3493796+03:00</BirthDate>
<GenderID>dbf6a1ca-a85d-4a10-af8a-34136318b4d1</GenderID>
<HealthIssues>sample string 3</HealthIssues>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<PatientFamilyID>ac0b884f-e180-4f32-841d-f3ad7a381896</PatientFamilyID>
<RelationshipID>1b20f08d-0834-4ad7-8838-037db353ac78</RelationshipID>
</PatientFamily>
<PatientFamily>
<Alive>true</Alive>
<BirthDate>2026-08-12T11:43:56.3493796+03:00</BirthDate>
<GenderID>dbf6a1ca-a85d-4a10-af8a-34136318b4d1</GenderID>
<HealthIssues>sample string 3</HealthIssues>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<PatientFamilyID>ac0b884f-e180-4f32-841d-f3ad7a381896</PatientFamilyID>
<RelationshipID>1b20f08d-0834-4ad7-8838-037db353ac78</RelationshipID>
</PatientFamily>
</PatientFamily>
</GetPatientFamilyResponse>