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": "feebd279-8cca-480e-80b4-bc70195f3edb",
"ReportTypeID": "f95005fb-8307-4622-b389-90fa48b91c0c",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2025-12-11T14:38:54.5322728+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
},
"PatientID": "5ee92402-bbae-43c7-be50-d5d1be202193",
"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>5ee92402-bbae-43c7-be50-d5d1be202193</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>feebd279-8cca-480e-80b4-bc70195f3edb</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2025-12-11T14:38:54.5322728+03:00</ReportDate>
<ReportTypeID>f95005fb-8307-4622-b389-90fa48b91c0c</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": "8f05a16a-1346-444d-9c79-5d004edab1cd",
"ReportTypeID": "3ba7bcdc-6314-4d5d-8155-b1e690e435d2",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2025-12-11T14:38:54.5322728+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>8f05a16a-1346-444d-9c79-5d004edab1cd</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2025-12-11T14:38:54.5322728+03:00</ReportDate>
<ReportTypeID>3ba7bcdc-6314-4d5d-8155-b1e690e435d2</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReportResponse>