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": "c4f42ee4-423b-42c9-a3e4-0135d62d7b19",
"Title": "sample string 1",
"FileName": "sample string 2",
"ReportCopy": "sample string 3",
"ReportDate": "2026-02-28T15:33:49.4561556+03:00",
"ReportAvailable": true,
"Notes": "sample string 4"
},
"PatientID": "4fe4133d-0e71-45dd-8262-22f939ca6993",
"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>4fe4133d-0e71-45dd-8262-22f939ca6993</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-02-28T15:33:49.4561556+03:00</ReportDate>
<ReportTypeID>c4f42ee4-423b-42c9-a3e4-0135d62d7b19</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": "330605bf-e2f8-4ae0-96eb-5383781c9db9",
"ReportTypeID": "64cde7ec-151f-4be8-a4a6-560b3ef56b11",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-02-28T15:33:49.4716889+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>330605bf-e2f8-4ae0-96eb-5383781c9db9</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-02-28T15:33:49.4716889+03:00</ReportDate>
<ReportTypeID>64cde7ec-151f-4be8-a4a6-560b3ef56b11</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReportResponse>