chatBskyConvoGetConvoMembers top-level constant
chat.bsky.convo.getConvoMembers
Implementation
const chatBskyConvoGetConvoMembers = <String, dynamic>{
"lexicon": 1,
"id": "chat.bsky.convo.getConvoMembers",
"defs": {
"main": {
"type": "query",
"description": "Returns a paginated list of members from a conversation.",
"parameters": {
"type": "params",
"required": ["convoId"],
"properties": {
"convoId": {"type": "string"},
"limit": {
"type": "integer",
"default": 50,
"minimum": 1,
"maximum": 100,
},
"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",
},
},
},
},
},
"errors": [
{"name": "InvalidConvo"},
],
},
},
};