chat.bsky.convo.leaveConvo
Schema Diff
+4 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.leaveConvo",
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
],
12
12
"properties": {
13
13
"convoId": {
14
14
"type": "string"
15
15
}
16
16
}
17
17
},
18
18
"encoding": "application/json"
19
19
},
20
20
"errors": [
21
21
{
22
22
"name": "InvalidConvo"
23
23
},
24
24
{
25
+
"name": "AlreadyLeftConvo",
26
+
"description": "The user has already left the conversation and is not back in (a direct conversation can be restarted by a new message, which allows leaving again)."
27
+
},
28
+
{
25
29
"name": "OwnerCannotLeave",
26
30
"description": "The owner of a group conversation cannot leave before locking the group."
27
31
}
28
32
],
29
33
"output": {
30
34
"schema": {
31
35
"type": "object",
32
36
"required": [
33
37
"convoId",
34
38
"rev"
35
39
],
36
40
"properties": {
37
41
"rev": {
38
42
"type": "string"
39
43
},
40
44
"convoId": {
41
45
"type": "string"
42
46
}
43
47
}
44
48
},
45
49
"encoding": "application/json"
46
50
},
47
51
"description": "Leaves a conversation (direct or group). For group, this effectively removes membership. For direct, membership is never removed, only changed to remove from enumerations by the user who left."
48
52
}
49
53
},
50
54
"$type": "com.atproto.lexicon.schema",
51
55
"lexicon": 1
52
56
}