forked from kinecosystem/kin-python-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.yaml
404 lines (369 loc) · 10.5 KB
/
api.yaml
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
swagger: "2.0"
info:
description: "Micro service to invoke common kin stuff using the kin-python-sdk."
version: "1.0.0"
title: "Kin Python Microservice"
license:
name: "MIT"
url: "https://opensource.org/licenses/MIT"
schemes:
- "https"
paths:
/pay:
post:
tags:
- "Endpoints:"
summary: "Send KIN to an address"
operationId: "sendKin"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Payment Request object"
required: true
schema:
$ref: '#/definitions/PaymentRequest'
responses:
200:
description: 'Successfull request'
schema:
$ref: '#/definitions/TransactionResponse'
# Swagger doesn't support same http code for several responses, so i add a slash to bypass it
400:
$ref: '#/definitions/DestinationDoesNotExistError'
400/:
$ref: '#/definitions/LowBalanceError'
/create:
post:
tags:
- "Endpoints:"
summary: "Create an account on the blockchain"
operationId: "createAccount"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Creation request object"
required: true
schema:
$ref: '#/definitions/CreationRequest'
responses:
200:
description: 'Successfull request'
schema:
$ref: '#/definitions/TransactionResponse'
400:
$ref: '#/definitions/LowBalanceError'
400/:
$ref: '#/definitions/DestinationExistsError'
/balance/{address}:
get:
tags:
- "Endpoints:"
summary: "Get the KIN balance of an account"
operationId: "getBalance"
produces:
- "application/json"
parameters:
- in: path
name: address
required: true
type: string
description: The public address of the account to query
responses:
200:
description: 'Successfull request'
schema:
$ref: '#/definitions/BalanceResponse'
400:
$ref: '#/definitions/AccountNotFoundError'
/payment/{tx_hash}:
get:
tags:
- "Endpoints:"
summary: "Get info about a kin payment"
operationId: "getPayment"
produces:
- "application/json"
parameters:
- in: path
name: tx_hash
required: true
type: string
description: The hash of the payment transaction
responses:
200:
description: 'Successfull request'
schema:
$ref: '#/definitions/PaymentInfoResponse'
404:
$ref: '#/definitions/TransactionNotFoundError'
400:
$ref: '#/definitions/InvalidTransactionError'
/whitelist:
post:
tags:
- "Endpoints:"
summary: "Whitelist a transaction"
operationId: "whitelist"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Whitelist request object"
required: true
schema:
$ref: '#/definitions/WhitelistRequest'
responses:
200:
description: 'Successfull request'
schema:
$ref: '#/definitions/WhitelistResponse'
400:
$ref: '#/definitions/CantDecodeTransactionError'
/status:
get:
tags:
- "Endpoints:"
summary: "Get the current config/status of the service (Use as healthcheck)"
operationId: "status"
produces:
- "application/json"
responses:
200:
description: "Successfull request"
schema:
$ref: '#/definitions/StatusResponse'
definitions:
PaymentRequest:
type: object
required: [destination, amount, memo]
properties:
destination:
type: string
example: GCJEHC2UOSIDPPIHJ2SH3B2ZL5XBB7KYK2M6OHXZTUW4NI2NEVVFVDLD
amount:
type: number
example: 130
memo:
type: string
example: "Order-123"
CreationRequest:
type: object
required: [destination, starting_balance, memo]
properties:
destination:
type: string
example: GCJEHC2UOSIDPPIHJ2SH3B2ZL5XBB7KYK2M6OHXZTUW4NI2NEVVFVDLD
starting_balance:
type: number
example: 5
memo:
type: string
example: null
TransactionResponse:
type: object
properties:
tx_id:
type: string
example: ae9b957a857c843cd8d921820f9695daa5aa00f51f1665ff925999ab0ccd54bd
BalanceResponse:
type: object
properties:
balance:
type: number
example: 154.5
PaymentInfoResponse:
type: object
properties:
source:
type: string
example: "GDG57ST5LAJNFKSZHSSX7ME3ET6JTZQHDQF5LX7OM2GJNRSE2VJ2OSKB"
destination:
type: string
example: "GA3YVWB2N3RJCDNAGRD6WC6QIDYC5VP6KRBSG3EDL4UFQKMJBVMAET6Y"
amount:
type: number
example: 15
memo:
type: string
example: "Hello"
timestamp:
type: integer
example: 1547545819
WhitelistRequest:
type: object
properties:
envelope:
type: string
example: AAAAACQpNXQ4NCGx5OeZCkDJTzqAdXYY4qedTmyUwcE2c02wAAAAAAANfdwAAAADAAAAAAAAAAEAAAAcMS1sNjhiLVQwQzJuUUZwOU1VeE5tRDc3RE5wcQAAAAEAAAAAAAAAAQAAAADSTsz/bFP7AezxTQVxZrzaHXErPrT49yakAlKWKxMSEQAAAAAAAAAAAJiWgAAAAAAAAAACNnNNsAAAAEDymQhlExH6oyNIVzxLDhTdQrEu567QmRguIsJ/nnCd2UsMxphe88NYAtcPsRGtLDeq/T3dVO6TuUp+BCTClIIHMU/hGAAAAEAbmxZQ81NFZAcpYHJgCctxeeWdKanlK92JoqX58ui0wAoaSb1DtpHMCdBQE/UGulz29zLC8A4Mgk/nq/rmqlMI
network_id:
type: string
example: "Kin Mainnet ; December 2018"
WhitelistResponse:
type: object
properties:
tx_envelope:
type: string
example: AAAAACQpNXQ4NCGx5OeZCkDJTzqAdXYY4qedTmyUwcE2c02wAAAAAAANfdwAAAADAAAAAAAAAAEAAAAcMS1sNjhiLVQwQzJuUUZwOU1VeE5tRDc3RE5wcQAAAAEAAAAAAAAAAQAAAADSTsz/bFP7AezxTQVxZrzaHXErPrT49yakAlKWKxMSEQAAAAAAAAAAAJiWgAAAAAAAAAACNnNNsAAAAEDymQhlExH6oyNIVzxLDhTdQrEu567QmRguIsJ/nnCd2UsMxphe88NYAtcPsRGtLDeq/T3dVO6TuUp+BCTClIIHMU/hGAAAAEAbmxZQ81NFZAcpYHJgCctxeeWdKanlK92JoqX58ui0wAoaSb1DtpHMCdBQE/UGulz29zLC8A4Mgk/nq/rmqlMI
StatusResponse:
type: object
properties:
service_version:
type: string
example: "1.4.2"
horizon:
type: string
example: "http://horizon.kinfederation.com"
app_id:
type: string
example: "rc43"
public_address:
type: string
example: "GA5VKONC2ABAHER37Q6WZ7JLBEQ2RENLU2GVP2K2E2HAJT2T6CNPZ7QX"
balance:
type: number
example: 179875
channels:
type: object
properties:
free_channels:
type: number
example: 17
non_free_channels:
type: number
example: 3
total_channels:
type: number
example: 20
# Global Errors
InvalidParamError:
description: 'Invalid parameter'
type: object
properties:
code:
type: number
example: 4001
message:
type: string
example: "Destination 'qwert' is not a valid public address"
InternalError:
description: 'Internal server error'
type: object
properties:
code:
type: number
example : 500
message:
type: string
example: "Internal server error"
MissingParamError:
description: 'Missing parameters'
type: object
properties:
code:
type: number
example: 4006
message:
type: string
example: "The parameter '{missing_param}' was missing from the requests body"
ExtraParamError:
description: 'Extra parameters'
type: object
properties:
code:
type: number
example: 4007
message:
type: string
example: "The parameter '{extra_param}' was not expected for this requests body"
InvalidBodyError:
description: 'Invalid body'
type: object
properties:
code:
type: number
example: 4008
message:
type: string
example: 'The received body was not a valid json'
# Specific Errors
DestinationDoesNotExistError:
description: "Destination doesn't exist"
type: object
properties:
code:
type: number
example: 4002
message:
type: string
example: "Destination 'GA5VKONC2ABAHER37Q6WZ7JLBEQ2RENLU2GVP2K2E2HAJT2T6CNPZ7QX' does not exist"
DestinationExistsError:
description: "Destination already exists"
type: object
properties:
code:
type: number
example: 4009
message:
type: string
example: "Destination 'GA5VKONC2ABAHER37Q6WZ7JLBEQ2RENLU2GVP2K2E2HAJT2T6CNPZ7QX' already exists"
LowBalanceError:
description: 'Low balance'
type: object
properties:
code:
type: number
example: 4003
message:
type: string
example: "The account does not have enough kin to perform this operation"
AccountNotFoundError:
description: 'Account not found'
type: object
properties:
code:
type: number
example: 4041
message:
type: string
example: "Account 'GA5VKONC2ABAHER37Q6WZ7JLBEQ2RENLU2GVP2K2E2HAJT2T6CNPZ7QX' was not found"
TransactionNotFoundError:
description: 'Transaction not found'
type: object
properties:
code:
type: number
example: 4041
message:
type: string
example: "Transaction 'ae9b957a857c843cd8d921820f9695daa5aa00f51f1665ff925999ab0ccd54bd' was not found"
InvalidTransactionError:
description: 'Invalid transaction found'
type: object
properties:
code:
type: number
example: 4004
message:
type: string
example: "The specified transaction was not a valid kin payment transaction"
CantDecodeTransactionError:
description: 'Cant decode the transaction envelope'
type: object
properties:
code:
type: number
example: 4005
message:
type: string
example: "The service is unable to decode the received transaction envelope"