Mark one or more notifications as read for the authenticated viewer.
Input
Encoding
application/jsonids
array
Required
No description available.
maxLength: 100 itemsminLength: 1 itemsOutput
Encoding
application/jsonupdatedCount
integer
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"ids"
],
"properties": {
"ids": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 100,
"minLength": 1
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"updatedCount"
],
"properties": {
"updatedCount": {
"type": "integer",
"minimum": 0
}
}
},
"encoding": "application/json"
},
"description": "Mark one or more notifications as read for the authenticated viewer."
}