chat.bsky.group.listJoinRequests
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.group.listJoinRequests",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"errors": [
7
7
{
8
8
"name": "InvalidConvo"
9
9
},
10
10
{
11
11
"name": "InsufficientRole"
12
12
}
13
13
],
14
14
"output": {
15
15
"schema": {
16
16
"type": "object",
17
17
"required": [
18
18
"requests"
19
19
],
20
20
"properties": {
21
21
"cursor": {
22
22
"type": "string"
23
23
},
24
24
"requests": {
25
25
"type": "array",
26
26
"items": {
27
27
"ref": "chat.bsky.group.defs#joinRequestView",
28
28
"type": "ref"
29
29
}
30
30
}
31
31
}
32
32
},
33
33
"encoding": "application/json"
34
34
},
35
35
"parameters": {
36
36
"type": "params",
37
37
"required": [
38
38
"convoId"
39
39
],
40
40
"properties": {
41
41
"limit": {
42
42
"type": "integer",
43
43
"default": 50,
44
44
"maximum": 100,
45
45
"minimum": 1
46
46
},
47
47
"cursor": {
48
48
"type": "string"
49
49
},
50
50
"convoId": {
51
51
"type": "string"
52
52
}
53
53
}
54
54
},
55
-
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Lists a page of request to join a group (via join link) the user owns. Shows the data from the owner's point of view."
55
+
"description": "Lists a page of request to join a group (via join link) the user owns. Shows the data from the owner's point of view."
56
56
}
57
57
},
58
58
"$type": "com.atproto.lexicon.schema",
59
59
"lexicon": 1
60
60
}