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": "d78a186d-3bef-4f1d-8ecb-7f2a541ea2b7",
"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>d78a186d-3bef-4f1d-8ecb-7f2a541ea2b7</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": "a5a3691d-0e28-4867-b8b6-aa7da372f903",
"RelationshipID": "474184b0-fbd6-44d7-80de-85f716a9f724",
"GenderID": "1ed15555-734f-4618-9ec9-ea645bc8aaf7",
"Name": "sample string 2",
"HealthIssues": "sample string 3",
"Alive": true,
"BirthDate": "2026-02-28T15:36:50.9271669+03:00",
"Notes": "sample string 4"
},
{
"PatientFamilyID": "a5a3691d-0e28-4867-b8b6-aa7da372f903",
"RelationshipID": "474184b0-fbd6-44d7-80de-85f716a9f724",
"GenderID": "1ed15555-734f-4618-9ec9-ea645bc8aaf7",
"Name": "sample string 2",
"HealthIssues": "sample string 3",
"Alive": true,
"BirthDate": "2026-02-28T15:36:50.9271669+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-02-28T15:36:50.9271669+03:00</BirthDate>
<GenderID>1ed15555-734f-4618-9ec9-ea645bc8aaf7</GenderID>
<HealthIssues>sample string 3</HealthIssues>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<PatientFamilyID>a5a3691d-0e28-4867-b8b6-aa7da372f903</PatientFamilyID>
<RelationshipID>474184b0-fbd6-44d7-80de-85f716a9f724</RelationshipID>
</PatientFamily>
<PatientFamily>
<Alive>true</Alive>
<BirthDate>2026-02-28T15:36:50.9271669+03:00</BirthDate>
<GenderID>1ed15555-734f-4618-9ec9-ea645bc8aaf7</GenderID>
<HealthIssues>sample string 3</HealthIssues>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<PatientFamilyID>a5a3691d-0e28-4867-b8b6-aa7da372f903</PatientFamilyID>
<RelationshipID>474184b0-fbd6-44d7-80de-85f716a9f724</RelationshipID>
</PatientFamily>
</PatientFamily>
</GetPatientFamilyResponse>