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