Notify server that the requesting account has seen notifications. Requires auth.
Input
Encoding
application/jsonseenAt
stringdatetime
Required
An RFC 3339 formatted timestamp.
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": [
"seenAt"
],
"properties": {
"seenAt": {
"type": "string",
"format": "datetime"
}
}
},
"encoding": "application/json"
},
"description": "Notify server that the requesting account has seen notifications. Requires auth."
}