Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned.
Parameters
Output
Encoding
application/jsoncanChat
boolean
Required
No description provided.
convo
refchat.bsky.convo.defs#convoView
Optional
No description provided.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"canChat"
],
"properties": {
"convo": {
"ref": "chat.bsky.convo.defs#convoView",
"type": "ref"
},
"canChat": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"members"
],
"properties": {
"members": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"maxLength": 10,
"minLength": 1
}
}
},
"description": "Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned."
}