Files
atproto/lexicons/chat/bsky/convo/getConvoMembers.json
2026-04-21 11:39:02 -03:00

43 lines
1.0 KiB
JSON

{
"lexicon": 1,
"id": "chat.bsky.convo.getConvoMembers",
"defs": {
"main": {
"type": "query",
"description": "Returns a paginated list of members from a conversation.",
"errors": [{ "name": "InvalidConvo" }],
"parameters": {
"type": "params",
"required": ["convoId"],
"properties": {
"convoId": { "type": "string" },
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50
},
"cursor": { "type": "string" }
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["members"],
"properties": {
"cursor": { "type": "string" },
"members": {
"type": "array",
"items": {
"type": "ref",
"ref": "chat.bsky.actor.defs#profileViewBasic"
}
}
}
}
}
}
}
}