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": "3399f496-7782-4924-9456-3aaf8444d167",
"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>3399f496-7782-4924-9456-3aaf8444d167</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": "6c1313b4-3c84-4109-ab1b-51bf1b1b4e3a",
"ReportTypeID": "656db41e-cf3d-4296-8413-72a91a6970c0",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-02-28T15:34:32.0117609+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
},
{
"PatientReportID": "6c1313b4-3c84-4109-ab1b-51bf1b1b4e3a",
"ReportTypeID": "656db41e-cf3d-4296-8413-72a91a6970c0",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-02-28T15:34:32.0117609+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>6c1313b4-3c84-4109-ab1b-51bf1b1b4e3a</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-02-28T15:34:32.0117609+03:00</ReportDate>
<ReportTypeID>656db41e-cf3d-4296-8413-72a91a6970c0</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>6c1313b4-3c84-4109-ab1b-51bf1b1b4e3a</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-02-28T15:34:32.0117609+03:00</ReportDate>
<ReportTypeID>656db41e-cf3d-4296-8413-72a91a6970c0</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReport>
</GetPatientReportResponse>