POST api/Patient/GetPatientReport
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": "abb32f5d-858e-4f52-8f03-a51f244ec1bd",
"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>abb32f5d-858e-4f52-8f03-a51f244ec1bd</PatientID> <WebApiVersion>4</WebApiVersion> <PageCount>2</PageCount> <PageNumber>1</PageNumber> </PageRequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientReportResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientReport | Collection of PatientReport |
None. |
|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| TotalCount | integer |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientReport": [
{
"PatientReportID": "de7f957a-42f3-4692-9414-686c9e9f7818",
"ReportTypeID": "97535331-e856-400c-a4c6-c54b025cd4e3",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-06-18T12:18:06.9431462+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
},
{
"PatientReportID": "de7f957a-42f3-4692-9414-686c9e9f7818",
"ReportTypeID": "97535331-e856-400c-a4c6-c54b025cd4e3",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-06-18T12:18:06.9431462+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
}
],
"PageNumber": 1,
"PageCount": 2,
"TotalCount": 3,
"WebApiVersion": 4
}
application/xml, text/xml
Sample:
<GetPatientReportResponse 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>
<PatientReport>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>de7f957a-42f3-4692-9414-686c9e9f7818</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-06-18T12:18:06.9431462+03:00</ReportDate>
<ReportTypeID>97535331-e856-400c-a4c6-c54b025cd4e3</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>de7f957a-42f3-4692-9414-686c9e9f7818</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-06-18T12:18:06.9431462+03:00</ReportDate>
<ReportTypeID>97535331-e856-400c-a4c6-c54b025cd4e3</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReport>
</GetPatientReportResponse>