POST api/Patient/PatientReportUpdate
Request Information
URI Parameters
None.
Body Parameters
PatientReportUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientReport | PatientReport |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientReport": {
"PatientReportID": "bee0457f-4043-4107-b7b6-a3a439342838",
"ReportTypeID": "b2ba607f-eb09-4621-8be2-f7fe1d858ee9",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-06-18T12:18:07.0056444+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
},
"PatientID": "dfc89d5a-d4fc-47eb-9325-91d56099fd1c",
"WebApiVersion": 2,
"Language": "sample string 3"
}
application/xml, text/xml
Sample:
<PatientReportUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<Language>sample string 3</Language>
<PatientID>dfc89d5a-d4fc-47eb-9325-91d56099fd1c</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>bee0457f-4043-4107-b7b6-a3a439342838</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-06-18T12:18:07.0056444+03:00</ReportDate>
<ReportTypeID>b2ba607f-eb09-4621-8be2-f7fe1d858ee9</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReportUpdateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PatientReportResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientReport | PatientReport |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientReport": {
"PatientReportID": "f186a832-5f16-48d7-bda2-224cbc7f65e0",
"ReportTypeID": "878e2421-67fb-43d3-b2e2-0f3c05ae4cd5",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-06-18T12:18:07.0056444+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
},
"WebApiVersion": 1
}
application/xml, text/xml
Sample:
<PatientReportResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>1</WebApiVersion>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>f186a832-5f16-48d7-bda2-224cbc7f65e0</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-06-18T12:18:07.0056444+03:00</ReportDate>
<ReportTypeID>878e2421-67fb-43d3-b2e2-0f3c05ae4cd5</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReportResponse>