List the viewer's notifications.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
notifications
array
Required
No description available.
seenAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
serverTime
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": "query",
"output": {
"schema": {
"type": "object",
"required": [
"notifications",
"serverTime"
],
"properties": {
"cursor": {
"type": "string"
},
"seenAt": {
"type": "string",
"format": "datetime"
},
"serverTime": {
"type": "string",
"format": "datetime"
},
"notifications": {
"type": "array",
"items": {
"ref": "app.didpic.notification.defs#notificationView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "List the viewer's notifications."
}