[NOTE: This is under active development and should be considered unstable while this note is here]. Edits group settings.
Input
Encoding
application/jsonconvoId
string
Required
No description available.
name
string
Required
No description available.
maxLength: 1280 bytesminLength: 1 bytesmaxGraphemes: 128 graphemesOutput
Encoding
application/jsonconvo
refchat.bsky.convo.defs#convoView
Required
No description available.
Errors
ConvoLocked
InvalidConvo
InsufficientRole
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"convoId",
"name"
],
"properties": {
"name": {
"type": "string",
"maxLength": 1280,
"minLength": 1,
"maxGraphemes": 128
},
"convoId": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "ConvoLocked"
},
{
"name": "InvalidConvo"
},
{
"name": "InsufficientRole"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"convo"
],
"properties": {
"convo": {
"ref": "chat.bsky.convo.defs#convoView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Edits group settings."
}