forked from thefactremains/fallball-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apiary.apib
228 lines (145 loc) · 4.28 KB
/
apiary.apib
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
FORMAT: 1A
HOST: https://private-b77a0-fallballconnector.apiary-mock.com
# FallBall Connector
FallBall Connector implements the APS Lite connector API for FallBall sample application
## Top level [/]
### Health Check [GET /]
+ Response 200 (application/json)
{
"status": "ok",
"version": "1.0"
}
## Application [/app]
### Partner creates new application instance [POST /app]
+ Request (application/json)
+ Attributes (object)
+ aps (object)
+ type (string)
+ id (string)
+ Response 201 (application/json)
{
"aps": {
"id": "24ed300f-9c1f-4d8c-948f-d23319c31c2a",
"type": "http://aps.odin.com/app/fallball-connector/app/1.0"
}
}
### Partner deinstall application [DELETE /app/{id}]
+ Response 204 (application/json)
### Partner upgrades application [POST /app/{id}/upgrade{?version}]
Version parameter will contain the app version the connector is upgraded from.
+ Parameters
+ version (string)
+ Response 200 (application/json)
{
}
### Application subscriptions populated [POST /app/{app}/tenants]
+ Response 200 (application/json)
{
}
### Subscription removed from application collection [DELETE /app/{app}/tenants/{id}]
+ Response 200 (application/json)
{
}
## Tenant [/tenant]
Resources related to subscription API
### Create a new subscription [POST /tenant]
+ Request (application/json)
+ Attributes (object)
+ aps (object)
+ type (string)
+ id (string)
+ DEVICES (object)
+ limit (number)
+ DISKSPACE (object)
+ limit (number)
+ USERS (object)
+ limit (number)
+ oaSubscription (object)
+ aps (object)
+ id (string)
+ oaAccout (object)
+ aps (object)
+ id (string)
+ Response 201 (application/json)
{
"tenantId": "Davis-and-Sons-sub446"
}
### Get application resource usage [GET /tenant/{id}]
+ Response 200 (application/json)
{
"DEVICES": {
"usage": 5
},
"DISKSPACE": {
"usage": 10
},
"USERS": {
"usage": 2
}
}
### Update subscription resource limits [PUT /tenant/{id}]
+ Request (application/json)
+ Attributes (object)
+ DISKSPACE (object)
+ limit (number)
+ Response 200 (application/json)
{
}
### Delete subscription [DELETE /tenant/{id}]
+ Response 200 (application/json)
{
}
### Suspend subscription [PUT /tenant/{id}/disable]
+ Response 200 (application/json)
{
}
### Resume subscription [PUT /tenant/{id}/enable]
+ Response 200 (application/json)
{
}
### Login to application [GET /tenant/{id}/adminlogin]
+ Response 200 (application/json)
{
"redirectUrl": "http://fallball.io/#/auth?token=eyJhbGciOiJE"
}
### New user notification [POST /tenant/{id}/users]
+ Response 200 (application/json)
{
}
### User removed notification [DELETE /tenant/{id}/users/{user_id}]
+ Response 200 (application/json)
{
}
## User [/user]
### Create new user [POST /user]
The `resource` request attribute will contain the type of user service to assign to user. E.g. 'USERS'.
+ Request (application/json)
+ Attributes (object)
+ aps (object)
+ type (string)
+ tenant (object)
+ aps (object)
+ id (string)
+ user (object)
+ aps (object)
+ id (string)
+ resource (string)
+ Response 200 (application/json)
{
"userId": "wilsonthomas@example.net"
}
### Remove user [DELETE /user/{id}]
+ Response 204 (application/json)
### Update user [PUT /user/{id}]
Assign a different service to user.
+ Request (application/json)
+ Attributes (object)
+ resource (string)
+ Response 200 (application/json)
{
}
### Log user in [GET /user/{id}/userlogin]
+ Response 200 (application/json)
{
"redirectUrl": "http://fallball.io/#/auth?token=CJleHAiOjE0O"
}