chat.bsky.group.requestJoin
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.group.requestJoin",
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
"code"
11
11
],
12
12
"properties": {
13
13
"code": {
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": "ConvoLocked"
23
23
},
24
24
{
25
25
"name": "FollowRequired"
26
26
},
27
27
{
28
28
"name": "InvalidCode"
29
29
},
30
30
{
31
31
"name": "LinkDisabled"
32
32
},
33
33
{
34
34
"name": "MemberLimitReached"
35
35
},
36
36
{
37
37
"name": "UserKicked"
38
38
}
39
39
],
40
40
"output": {
41
41
"schema": {
42
42
"type": "object",
43
43
"required": [
44
44
"status"
45
45
],
46
46
"properties": {
47
47
"convo": {
48
48
"ref": "chat.bsky.convo.defs#convoView",
49
49
"type": "ref",
50
50
"description": "The group convo joined. This is only present in the case of status=joined"
51
51
},
52
52
"status": {
53
53
"type": "string",
54
54
"knownValues": [
55
55
"joined",
56
56
"pending"
57
57
]
58
58
}
59
59
}
60
60
},
61
61
"encoding": "application/json"
62
62
},
63
-
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member."
63
+
"description": "Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member."
64
64
}
65
65
},
66
66
"$type": "com.atproto.lexicon.schema",
67
67
"lexicon": 1
68
68
}