POST api/Patient/SetMessageStatusRead
Request Information
URI Parameters
None.
Body Parameters
PatientSetMessageStatusReadRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| interventionNumbers | Collection of string |
None. |
|
| reportNumbers | Collection of string |
None. |
|
| time | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"interventionNumbers": [
"sample string 1",
"sample string 2"
],
"reportNumbers": [
"sample string 1",
"sample string 2"
],
"time": "2025-12-11T02:48:10.5162938+01:00"
}
application/xml, text/xml
Sample:
<PatientSetMessageStatusReadRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Patient.Model">
<InterventionNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</InterventionNumbers>
<ReportNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ReportNumbers>
<Time>2025-12-11T02:48:10.5162938+01:00</Time>
</PatientSetMessageStatusReadRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PatientSetMessageStatusReadResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| mesasge | string |
None. |
|
| isSuccess | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"mesasge": "sample string 1",
"isSuccess": true
}
application/xml, text/xml
Sample:
<PatientSetMessageStatusReadResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Patient.Model"> <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Models">true</IsSuccess> <Mesasge xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Models">sample string 1</Mesasge> </PatientSetMessageStatusReadResponse>