POST api/Patient/PatientReportAdd
Request Information
URI Parameters
None.
Body Parameters
PatientReportAddRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientReportAdd | PatientReportAdd |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientReportAdd": {
"ReportTypeID": "fa6f7913-8675-46d9-a959-d8cdc648c585",
"Title": "sample string 1",
"FileName": "sample string 2",
"ReportCopy": "sample string 3",
"ReportDate": "2026-06-18T12:18:06.9431462+03:00",
"ReportAvailable": true,
"Notes": "sample string 4"
},
"PatientID": "4bf1f040-1d20-4b6f-8b57-44782a0d711f",
"WebApiVersion": 2,
"Language": "sample string 3"
}
application/xml, text/xml
Sample:
<PatientReportAddRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<Language>sample string 3</Language>
<PatientID>4bf1f040-1d20-4b6f-8b57-44782a0d711f</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientReportAdd>
<FileName>sample string 2</FileName>
<Notes>sample string 4</Notes>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 3</ReportCopy>
<ReportDate>2026-06-18T12:18:06.9431462+03:00</ReportDate>
<ReportTypeID>fa6f7913-8675-46d9-a959-d8cdc648c585</ReportTypeID>
<Title>sample string 1</Title>
</PatientReportAdd>
</PatientReportAddRequest>
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": "12696af3-97a8-4f76-8b0f-08160515c8da",
"ReportTypeID": "747c44e3-5061-469c-aaeb-f0781e41c100",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-06-18T12:18:06.9587624+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>12696af3-97a8-4f76-8b0f-08160515c8da</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-06-18T12:18:06.9587624+03:00</ReportDate>
<ReportTypeID>747c44e3-5061-469c-aaeb-f0781e41c100</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReportResponse>