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": "4df2f3c9-b3eb-4d86-a1a4-fa516ec2fa6e",
"Title": "sample string 1",
"FileName": "sample string 2",
"ReportCopy": "sample string 3",
"ReportDate": "2026-04-24T14:19:50.9066527+03:00",
"ReportAvailable": true,
"Notes": "sample string 4"
},
"PatientID": "cd39c0bb-634c-4c61-a73c-6899328c52d8",
"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>cd39c0bb-634c-4c61-a73c-6899328c52d8</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-04-24T14:19:50.9066527+03:00</ReportDate>
<ReportTypeID>4df2f3c9-b3eb-4d86-a1a4-fa516ec2fa6e</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": "a565045e-7da9-4391-b371-18c63ce86fa2",
"ReportTypeID": "c1712e93-7a41-4292-9333-37d76b6a44a2",
"Title": "sample string 2",
"FileName": "sample string 3",
"ReportCopy": "sample string 4",
"ReportDate": "2026-04-24T14:19:50.9066527+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>a565045e-7da9-4391-b371-18c63ce86fa2</PatientReportID>
<ReportAvailable>true</ReportAvailable>
<ReportCopy>sample string 4</ReportCopy>
<ReportDate>2026-04-24T14:19:50.9066527+03:00</ReportDate>
<ReportTypeID>c1712e93-7a41-4292-9333-37d76b6a44a2</ReportTypeID>
<Title>sample string 2</Title>
</PatientReport>
</PatientReportResponse>