chat.bsky.convo.sendMessage
Schema Diff
+10 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.sendMessage",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"convoId",
11
11
"message"
12
12
],
13
13
"properties": {
14
14
"convoId": {
15
15
"type": "string"
16
16
},
17
17
"message": {
18
18
"ref": "chat.bsky.convo.defs#messageInput",
19
19
"type": "ref"
20
20
}
21
21
}
22
22
},
23
23
"encoding": "application/json"
24
24
},
25
+
"errors": [
26
+
{
27
+
"name": "ConvoLocked"
28
+
},
29
+
{
30
+
"name": "InvalidConvo"
31
+
}
32
+
],
25
33
"output": {
26
34
"schema": {
27
35
"ref": "chat.bsky.convo.defs#messageView",
28
36
"type": "ref"
29
37
},
30
38
"encoding": "application/json"
31
-
}
39
+
},
40
+
"description": "Sends a message to a conversation."
32
41
}
33
42
},
34
43
"$type": "com.atproto.lexicon.schema",
35
44
"lexicon": 1
36
45
}