Description
POST: api/{vaultName}/notifications/markRead Mark message as read
Marks a notification as read.
Parameters
Name | Description | Data Type |
vaultName | (URI parameter) Vault name (required) | string |
IsValid | (Response) Whether the mark is valid
Member of ValidationOptionOfint32 | boolean |
Warning | (Response) A BaseWarningModel object that consists of:
Message (string)
IsBlocking (boolean)
IsError (boolean)
Member of ValidationOptionOfint32
| BaseWarningModel |
Value | (Response) Value of response
Member of ValidationOptionOfint32
| integer |
Request (application/json, text/json)
Request (application/xml, text/xml)
Sample Data
<ArrayOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<int>1</int>
<int>2</int>
</ArrayOfint>
Request (application/x-www-form-urlencoded)
Response (application/json, text/json)
Sample Data
[
{
"IsValid": false,
"Warning": null,
"Value": 0
},
{
"IsValid": false,
"Warning": null,
"Value": 0
}
]
Response (application/xml, text/xml)
Sample Data
<ArrayOfValidationOptionOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SWPDM.Models">
<ValidationOptionOfint />
<ValidationOptionOfint />
</ArrayOfValidationOptionOfint>
See Also