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": "d5b3c26d-6614-4ea0-b926-d2db11d24298",
"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>d5b3c26d-6614-4ea0-b926-d2db11d24298</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": "58fe3382-fe85-420b-86c8-cbf3b5973101",
"ReportTypeID": "4b672706-4c90-4cd0-9f85-87c468c8245e",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2025-12-11T14:39:35.1327823+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
},
{
"PatientReportID": "58fe3382-fe85-420b-86c8-cbf3b5973101",
"ReportTypeID": "4b672706-4c90-4cd0-9f85-87c468c8245e",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2025-12-11T14:39:35.1327823+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>58fe3382-fe85-420b-86c8-cbf3b5973101</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2025-12-11T14:39:35.1327823+03:00</ReportDate>
<ReportTypeID>4b672706-4c90-4cd0-9f85-87c468c8245e</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>58fe3382-fe85-420b-86c8-cbf3b5973101</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2025-12-11T14:39:35.1327823+03:00</ReportDate>
<ReportTypeID>4b672706-4c90-4cd0-9f85-87c468c8245e</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReport>
</GetPatientReportResponse>