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": "fdf09bad-9118-4b47-a9a0-f4286b2c404f",
"ReportTypeID": "9e1cd665-fd78-4248-993b-ca9277e7069d",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-02-28T15:33:46.9293691+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
},
"PatientID": "30b764a1-9a1e-4d72-b1d3-967c03d7e2be",
"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>30b764a1-9a1e-4d72-b1d3-967c03d7e2be</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>fdf09bad-9118-4b47-a9a0-f4286b2c404f</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-02-28T15:33:46.9293691+03:00</ReportDate>
<ReportTypeID>9e1cd665-fd78-4248-993b-ca9277e7069d</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": "c24b98e2-080d-48c6-a09b-800d85c88746",
"ReportTypeID": "a29ac534-fd69-4867-8533-2b905eea0354",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-02-28T15:33:46.944909+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>c24b98e2-080d-48c6-a09b-800d85c88746</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-02-28T15:33:46.944909+03:00</ReportDate>
<ReportTypeID>a29ac534-fd69-4867-8533-2b905eea0354</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReportResponse>