chat.bsky.convo.sendMessage
Schema Diff
+13 -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
+
{
33
+
"name": "ReplyTargetNotFound"
34
+
}
35
+
],
25
36
"output": {
26
37
"schema": {
27
38
"ref": "chat.bsky.convo.defs#messageView",
28
39
"type": "ref"
29
40
},
30
41
"encoding": "application/json"
31
-
}
42
+
},
43
+
"description": "Sends a message to a conversation."
32
44
}
33
45
},
34
46
"$type": "com.atproto.lexicon.schema",
35
47
"lexicon": 1
36
48
}