Enumerate notifications for the requesting account. Requires auth.
Parameters
Output
application/jsoncursor
string
Optional
No description provided.
notifications
array
Required
No description provided.
priority
boolean
Optional
No description provided.
seenAt
stringdatetime
Optional
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"
],
"properties": {
"cursor": {
"type": "string"
},
"seenAt": {
"type": "string",
"format": "datetime"
},
"priority": {
"type": "boolean"
},
"notifications": {
"type": "array",
"items": {
"ref": "#notification",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"seenAt": {
"type": "string",
"format": "datetime"
},
"reasons": {
"type": "array",
"items": {
"type": "string",
"description": "A reason that matches the reason property of #notification."
},
"description": "Notification reasons to include in response."
},
"priority": {
"type": "boolean"
}
}
},
"description": "Enumerate notifications for the requesting account. Requires auth."
}