Lists messages in a channel, newest first, paginated.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
messages
array
Required
No description available.
Errors
InvalidRequest
A parameter or body field was missing or malformed. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidRequest",
"description": "A parameter or body field was missing or malformed."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"messages"
],
"properties": {
"cursor": {
"type": "string"
},
"messages": {
"type": "array",
"items": {
"ref": "lex:social.colibri.channel.defs#message",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"channel"
],
"properties": {
"all": {
"type": "boolean",
"description": "Include hidden (moderated) messages."
},
"limit": {
"type": "integer"
},
"cursor": {
"type": "string"
},
"channel": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "Lists messages in a channel, newest first, paginated."
}