-
Notifications
You must be signed in to change notification settings - Fork 36
/
swagger.yml
387 lines (385 loc) · 8.8 KB
/
swagger.yml
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
swagger: '2.0'
info:
title: Bounty Board REST API
version: 0.1.0
host: bountyboard.bankless.community
basePath: /api
schemes:
- https
paths:
'/v1/customers':
get:
produces:
- application/json
responses:
'200':
description: Success
schema:
items:
$ref: '#/definitions/Customer'
'404':
description: No Customer records found
tags:
- List
post:
produces:
- application/json
responses:
'201':
description: Success
schema:
items:
$ref: '#/definitions/Customer'
'400':
description: Could not create customer
'403':
description: Not authorized to create customers
tags:
- Admin Actions
'/v1/customers/{customerId}':
patch:
produces:
- application/json
responses:
'200':
description: Success
schema:
items:
$ref: '#/definitions/Customer'
'400':
description: Could not edit customer
'403':
description: Not authorized to edit customers
'404':
description: Customer id not found
tags:
- Admin Actions
delete:
produces:
- application/json
responses:
'204':
description: Delete successful
'400':
description: Could not delete customer
'403':
description: Not authorized to delete customers
'404':
description: Customer id not found
tags:
- Admin Actions
'/v1/customers/user':
get:
summary:
Get list of DAOs for a given user, who are also bankless customers
produces:
- application/json
responses:
'200':
description: Success
schema:
items:
$ref: '#/definitions/Customer'
'404':
description: No Customer records found
tags:
- View
/v1/bounties:
get:
produces:
- application/json
parameters: []
responses:
'200':
description: Success
schema:
items:
$ref: '#/definitions/Bounty'
type: array
'404':
description: No Bounty records found
tags:
- List
summary: Get Bounty records
'/v1/bounties/{bountyId}':
get:
produces:
- application/json
parameters:
- in: path
name: bountyId
required: true
type: integer
responses:
'200':
description: Success
schema:
$ref: '#/definitions/Bounty'
'404':
description: No Bounty records found
tags:
- View
summary: Get Bounty record for a given ID
'/v1/bounties/user/{discordId}':
get:
produces:
- application/json
parameters:
- in: path
name: discordId
required: true
type: integer
responses:
'200':
description: Success
schema:
items:
$ref: '#/definitions/Bounty'
type: array
'404':
description: No Bounty records found for the User
tags:
- View
summary: Get Bounty records related to the User in any way
/v1/bounties/create:
# why are we not just having POST,patch, DELETE on the /bounties endpoint?
post:
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: body
required: true
schema:
$ref: '#/definitions/CreateBountyRequest'
responses:
'200':
description: Success
schema:
$ref: '#/definitions/BountyPayloadResponse'
'403':
description: Invalid authorization
'409':
description: >-
Bounty matches an already existing one
schema:
$ref: '#/definitions/ErrorResponse'
tags:
- Owner Actions
summary: Create a new Bounty.
'/v1/bounties/{bountyId}/remove':
delete:
produces:
- application/json
parameters:
- in: path
name: bountyId
required: true
type: integer
responses:
'200':
description: Success
'400':
description: An error has occurred
schema:
$ref: '#/definitions/ErrorResponse'
'403':
description: Invalid authorization
tags:
- Owner Actions
summary: Delete an existing Bounty
'/v1/bounties/{bountyId}/update':
patch:
consumes:
- application/json
parameters:
- in: path
name: bountyId
required: true
type: integer
- in: body
name: body
required: true
schema:
$ref: '#/definitions/UpdateBountyRequest'
responses:
'200':
description: Success
'403':
description: Invalid authorization
tags:
- Owner Actions
summary: Update an existing Bounty
'/v1/bounties/{bountyId}/complete':
patch:
consumes:
- application/json
parameters:
- in: path
name: bountyId
required: true
type: integer
responses:
'200':
description: Success
'403':
description: Invalid authorization
tags:
- Owner Actions
summary: Complete an existing Bounty
# Hunter actions
/v1/bounties/{bountyId}/claim:
patch:
consumes:
- application/json
parameters:
- in: path
name: bountyId
required: true
type: integer
produces:
- application/json
responses:
'200':
description: Success
'403':
description: Invalid authorization
'404':
description: Endpoint error
tags:
- Hunter Actions
summary: Claim a Bounty.
/v1/bounties/{bountyId}/submit:
patch:
consumes:
- application/json
parameters:
- in: path
name: bountyId
required: true
type: integer
- in: body
name: body
required: true
schema:
$ref: '#/definitions/SubmitBountyRequest'
produces:
- application/json
responses:
'200':
description: Success
'403':
description: Invalid authorization
'404':
description: Endpoint error
tags:
- Hunter Actions
summary: Submit a Bounty.
definitions:
Bounty:
properties:
_id:
type: string
customerId:
type: string
description: (discord server id)
title:
type: string
description:
type: string
criteria:
type: string
reward:
$ref: '#/definitions/Reward'
# ... more bounty props ...
type: object
Reward:
properties:
amount:
type: integer
currency:
type: string
scale:
type: integer
type: object
CreateBountyRequest:
properties:
customerId:
type: string
title:
type: string
description:
type: string
criteria:
type: string
reward:
$ref: '#/definitions/Reward'
dueAt:
type: number
# ... more bounty props ...
type: object
UpdateBountyRequest:
properties:
customerId:
type: string
title:
type: string
description:
type: string
criteria:
type: string
reward:
$ref: '#/definitions/Reward'
dueAt:
type: number
# ... more bounty props ...
type: object
SubmitBountyRequest:
properties:
resultUrl:
type: string
notes:
type: string
message:
type: string
type: object
BountyPayloadResponse2:
$ref: '#/definitions/Bounty'
ErrorResponse:
properties:
errorCode:
type: integer
errorMsg:
type: string
extraInfo:
items:
properties:
key:
type: string
value:
type: object
type: object
type: array
type: object
Customization:
description: customization properties for the DAO
properties:
logo:
type: string
colors:
type: object
type: object
Customer:
type: object
properties:
customerId:
type: string
customerName:
type: string
customization:
$ref: '#/definitions/BountyPayloadResponse2'
#securityDefinitions:
# TODO: Add the target auth here like Basic, OAuth, etc..
x-components: {}