social.colibri.community.deleteInvitation
Schema Diff
+18 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.community.deleteInvitation",
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
"type": "object",
9
27
"required": [
10
28
"code"
11
29
],
12
30
"properties": {
13
31
"code": {
14
32
"type": "string"
15
33
}
16
34
}
17
35
},
18
36
"encoding": "application/json"
19
37
},
20
38
"parameters": {
21
39
"type": "params",
22
40
"required": [
23
41
"uri",
24
42
"code"
25
43
],
26
44
"properties": {
27
45
"uri": {
28
46
"type": "string",
29
47
"format": "at-uri"
30
48
},
31
49
"code": {
32
50
"type": "string"
33
51
}
34
52
}
35
53
},
36
54
"description": "Deletes an invitation code."
37
55
}
38
56
},
39
57
"$type": "com.atproto.lexicon.schema",
40
58
"lexicon": 1
41
59
}