POST api/Patient/PatientReportUpdate

Request Information

URI Parameters

None.

Body Parameters

PatientReportUpdateRequest
NameDescriptionTypeAdditional information
PatientReport

PatientReport

None.

PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientReport": {
    "PatientReportID": "c6d0d895-fb12-4560-a764-43513bfead58",
    "ReportTypeID": "588b5517-0da6-4f0f-ab4b-a8ed36111120",
    "Title": "sample string 2",
    "FileName": "sample string 3",
    "ReportCopy": "sample string 4",
    "ReportDate": "2026-04-24T14:19:55.7386367+03:00",
    "ReportAvailable": true,
    "Notes": "sample string 5"
  },
  "PatientID": "a5938399-e246-4e33-a255-f5003f8f5946",
  "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>a5938399-e246-4e33-a255-f5003f8f5946</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientReport>
    <FileName>sample string 3</FileName>
    <Notes>sample string 5</Notes>
    <PatientReportID>c6d0d895-fb12-4560-a764-43513bfead58</PatientReportID>
    <ReportAvailable>true</ReportAvailable>
    <ReportCopy>sample string 4</ReportCopy>
    <ReportDate>2026-04-24T14:19:55.7386367+03:00</ReportDate>
    <ReportTypeID>588b5517-0da6-4f0f-ab4b-a8ed36111120</ReportTypeID>
    <Title>sample string 2</Title>
  </PatientReport>
</PatientReportUpdateRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PatientReportResponse
NameDescriptionTypeAdditional information
PatientReport

PatientReport

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "PatientReport": {
    "PatientReportID": "fe01bc9f-da8e-44c3-a991-0010e8f83df4",
    "ReportTypeID": "0fd3215e-d583-4d87-a52c-b2ea119d6cc9",
    "Title": "sample string 2",
    "FileName": "sample string 3",
    "ReportCopy": "sample string 4",
    "ReportDate": "2026-04-24T14:19:55.7386367+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>fe01bc9f-da8e-44c3-a991-0010e8f83df4</PatientReportID>
    <ReportAvailable>true</ReportAvailable>
    <ReportCopy>sample string 4</ReportCopy>
    <ReportDate>2026-04-24T14:19:55.7386367+03:00</ReportDate>
    <ReportTypeID>0fd3215e-d583-4d87-a52c-b2ea119d6cc9</ReportTypeID>
    <Title>sample string 2</Title>
  </PatientReport>
</PatientReportResponse>