Sends a message to a conversation.
Input
Encoding
application/jsonconvoId
string
Required
No description available.
message
refchat.bsky.convo.defs#messageInput
Required
No description available.
Output
Encoding
application/jsonErrors
ConvoLocked
InvalidConvo
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",
"message"
],
"properties": {
"convoId": {
"type": "string"
},
"message": {
"ref": "chat.bsky.convo.defs#messageInput",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "ConvoLocked"
},
{
"name": "InvalidConvo"
}
],
"output": {
"schema": {
"ref": "chat.bsky.convo.defs#messageView",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Sends a message to a conversation."
}