Files
atproto/lexicons/chat/bsky/convo/listConvoRequests.json
2026-04-15 15:35:18 -03:00

43 lines
1.2 KiB
JSON

{
"lexicon": 1,
"id": "chat.bsky.convo.listConvoRequests",
"defs": {
"main": {
"type": "query",
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests are returned as joinRequestView.",
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50
},
"cursor": { "type": "string" }
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["requests"],
"properties": {
"cursor": { "type": "string" },
"requests": {
"type": "array",
"items": {
"type": "union",
"refs": [
"chat.bsky.convo.defs#convoView",
"chat.bsky.group.defs#joinRequestView"
]
}
}
}
}
}
}
}
}