chat.bsky.group.removeMembers
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.group.removeMembers",
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
"members"
12
12
],
13
13
"properties": {
14
14
"convoId": {
15
15
"type": "string"
16
16
},
17
17
"members": {
18
18
"type": "array",
19
19
"items": {
20
20
"type": "string",
21
21
"format": "did"
22
22
},
23
23
"minLength": 1
24
24
}
25
25
}
26
26
},
27
27
"encoding": "application/json"
28
28
},
29
29
"errors": [
30
30
{
31
31
"name": "InvalidConvo"
32
32
},
33
33
{
34
34
"name": "InsufficientRole"
35
35
}
36
36
],
37
37
"output": {
38
38
"schema": {
39
39
"type": "object",
40
40
"required": [
41
41
"convo"
42
42
],
43
43
"properties": {
44
44
"convo": {
45
45
"ref": "chat.bsky.convo.defs#convoView",
46
46
"type": "ref"
47
47
}
48
48
}
49
49
},
50
50
"encoding": "application/json"
51
51
},
52
-
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Removes members from a group. This deletes convo memberships, doesn't just set a status."
52
+
"description": "Removes members from a group. This deletes convo memberships, doesn't just set a status."
53
53
}
54
54
},
55
55
"$type": "com.atproto.lexicon.schema",
56
56
"lexicon": 1
57
57
}