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": "4743c6a3-4373-470b-81bb-698f1bca998d",
"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>4743c6a3-4373-470b-81bb-698f1bca998d</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": "00237971-c9e3-4e7c-bccf-a5e22d561510",
"ReportTypeID": "8c7d48e7-9323-4a81-b410-32fbd41bce1d",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-08-12T11:43:56.53688+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
},
{
"PatientReportID": "00237971-c9e3-4e7c-bccf-a5e22d561510",
"ReportTypeID": "8c7d48e7-9323-4a81-b410-32fbd41bce1d",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-08-12T11:43:56.53688+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>00237971-c9e3-4e7c-bccf-a5e22d561510</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-08-12T11:43:56.53688+03:00</ReportDate>
<ReportTypeID>8c7d48e7-9323-4a81-b410-32fbd41bce1d</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>00237971-c9e3-4e7c-bccf-a5e22d561510</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-08-12T11:43:56.53688+03:00</ReportDate>
<ReportTypeID>8c7d48e7-9323-4a81-b410-32fbd41bce1d</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReport>
</GetPatientReportResponse>