social.colibri.community.createInvitation
Schema Diff
+18 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.community.createInvitation",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
+
"errors": [
7
+
{
8
+
"name": "AuthRequired",
9
+
"description": "Missing, malformed, or unverifiable service auth."
10
+
},
11
+
{
12
+
"name": "Forbidden",
13
+
"description": "The caller lacks the permission this method requires."
14
+
},
15
+
{
16
+
"name": "InvalidRequest",
17
+
"description": "A parameter or body field was missing or malformed."
18
+
},
19
+
{
20
+
"name": "NotFound",
21
+
"description": "The referenced record does not exist."
22
+
}
23
+
],
6
24
"output": {
7
25
"schema": {
8
26
"ref": "lex:social.colibri.community.defs#invitationView",
9
27
"type": "ref"
10
28
},
11
29
"encoding": "application/json"
12
30
},
13
31
"parameters": {
14
32
"type": "params",
15
33
"required": [
16
34
"community"
17
35
],
18
36
"properties": {
19
37
"community": {
20
38
"type": "string",
21
39
"format": "at-uri"
22
40
}
23
41
}
24
42
},
25
43
"description": "Creates an invitation code for a community."
26
44
}
27
45
},
28
46
"$type": "com.atproto.lexicon.schema",
29
47
"lexicon": 1
30
48
}