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": "fad92567-492f-4c94-ad4e-531b68db1edf",
"ReportTypeID": "caec2a73-ba5b-43dd-83ab-473386ac536e",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-08-12T11:43:56.5525083+03:00",
"ReportAvailable": true,
"Notes": "sample string 5"
},
"PatientID": "1233e9f7-d94e-4320-987e-87ebb32e3df4",
"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>1233e9f7-d94e-4320-987e-87ebb32e3df4</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientReport>
<FileName>sample string 3</FileName>
<Notes>sample string 5</Notes>
<PatientReportID>fad92567-492f-4c94-ad4e-531b68db1edf</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-08-12T11:43:56.5525083+03:00</ReportDate>
<ReportTypeID>caec2a73-ba5b-43dd-83ab-473386ac536e</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": "607a3178-92f9-4b6a-b26b-467047b46ec8",
"ReportTypeID": "5f78248c-5bbe-4acd-a92f-eb086c941f11",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-08-12T11:43:56.5681316+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>607a3178-92f9-4b6a-b26b-467047b46ec8</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-08-12T11:43:56.5681316+03:00</ReportDate>
<ReportTypeID>5f78248c-5bbe-4acd-a92f-eb086c941f11</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReportResponse>