Lists per-channel unread state for the requesting user.
Parameters
Output
Encoding
application/jsonstatuses
array
Required
Unread state per channel.
Errors
AuthRequired
The request has no valid service auth. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthRequired",
"description": "The request has no valid service auth."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"statuses"
],
"properties": {
"statuses": {
"type": "array",
"items": {
"ref": "social.colibri.beta.channel.defs#unreadStatus",
"type": "ref"
},
"description": "Unread state per channel."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of statuses to return."
},
"community": {
"type": "string",
"format": "did",
"description": "Restricts the results to one community. Absent returns unread state across all of the requesting user's communities."
}
}
},
"description": "Lists per-channel unread state for the requesting user."
}