Returns a paginated list of members from a conversation.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
members
array
Required
No description available.
Errors
InvalidConvo
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidConvo"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"members"
],
"properties": {
"cursor": {
"type": "string"
},
"members": {
"type": "array",
"items": {
"ref": "chat.bsky.actor.defs#profileViewBasic",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"convoId"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"convoId": {
"type": "string"
}
}
},
"description": "Returns a paginated list of members from a conversation."
}