-
Notifications
You must be signed in to change notification settings - Fork 2
/
props.json
85 lines (85 loc) · 2.17 KB
/
props.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"root": {
"name": "Root",
"method": "GET",
"description": "Does nothing. Just sitting there and waiting for requests. (Redirects on 'GET' to the documentation.)"
},
"invite": {
"route": "/invite/{platfrom}",
"name": "Invite",
"method": "GET",
"description": "Get the invite link for the astroid bot."
},
"privacyDc": {
"route": "/discord",
"name": "Privacy",
"method": "GET",
"description": "Invite to the Discord Server"
},
"privacy": {
"route": "/privacy",
"name": "Privacy",
"method": "GET",
"description": "Privacy"
},
"terms": {
"route": "/terms",
"name": "Terms",
"method": "GET",
"description": "Terms of service"
},
"getServerStructure": {
"route": "/getserverstructure",
"name": "Get Server Structure",
"method": "GET",
"description": "Get a server structure."
},
"getEndpoint": {
"route": "/{endpoint}",
"name": "Get Endpoint",
"method": "GET",
"description": "Get an endpoint."
},
"getBridges": {
"route": "/bridges/{endpoint}",
"name": "Get Bridges",
"method": "GET",
"description": "Get an endpoint."
},
"newToken": {
"route": "/token/{endpoint}",
"name": "New Token",
"method": "POST",
"description": "Generate a new token. (Only works with astroid-Bot)"
},
"postEndpoint": {
"route": "/update/{endpoint}",
"name": "Post Endpoint",
"method": "POST",
"description": "Modify an endpoint."
},
"markRead": {
"route": "/read/{endpoint}",
"name": "Mark Read",
"method": "POST",
"description": "Mark the 'meta' as read on the platform(s). [Note: Currently only used in the astroid Revolt-bot.]"
},
"createEndpoint": {
"route": "/create",
"name": "Create Endpoint",
"method": "POST",
"description": "Create an endpoint."
},
"deleteEndpoint": {
"route": "/delete/{endpoint}",
"name": "Delete Endpoint",
"method": "DELETE",
"description": "Delete an endpoint."
},
"deleteEndpointData": {
"route": "/delete/data/{endpoint}",
"name": "Delete Endpoint Data",
"method": "DELETE",
"description": "Edit or delete specific data of endpoint"
}
}