forked from Remitwise-Org/Remitwise-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
527 lines (507 loc) · 13.3 KB
/
openapi.yaml
File metadata and controls
527 lines (507 loc) · 13.3 KB
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
openapi: 3.0.3
info:
title: RemitWise Frontend API (v1)
version: "1.0.0"
description: |
This OpenAPI document describes the current v1 API surface for RemitWise.
Versioning: This repo uses URL-prefix versioning (e.g. /api/v1/...). The existing
API is considered v1. To avoid breaking existing clients, the Next.js app
rewrites `/api/*` to `/api/v1/*`.
Deprecation policy: When a new major version is released (for example v2),
older major versions will be supported for a minimum of 6 months before
removal. Security patches and critical bug fixes will be backported during
the deprecation window. Migration guides should be provided for clients.
servers:
- url: /api/v1
description: v1 base path (local/dev)
paths:
/anchor/deposit:
post:
summary: Start anchor deposit flow
description: >
Protected route. Starts a fiat -> USDC flow against the configured anchor.
Returns a URL and/or flow steps. Returns 501 when anchor is not configured.
/health:
get:
summary: Health check
description: Returns system status and connectivity for RPC, DB, and optional anchor.
responses:
'200':
description: All critical dependencies are healthy.
content:
application/json:
schema:
$ref: '#/components/schemas/HealthStatus'
'503':
description: One or more critical dependencies are unhealthy.
content:
application/json:
schema:
$ref: '#/components/schemas/HealthStatus'
components:
schemas:
HealthStatus:
type: object
properties:
status:
type: string
enum: [ok, unhealthy]
database:
type: string
enum: [ok, error]
rpc:
type: string
enum: [ok, error]
anchor:
type: string
enum: [ok, error, skipped]
- url: /api
description: legacy base path (rewrites to v1)
components:
securitySchemes:
cookieAuth:
type: apiKey
in: cookie
name: remitwise-session
description: Iron Session cookie for authenticated users
xUserHeader:
type: apiKey
in: header
name: x-user
description: Stellar public key of the caller
parameters:
AcceptLanguageHeader:
in: header
name: Accept-Language
required: false
schema:
type: string
example: es
description: |
Optional header to request localized responses.
Supported languages: 'en' (English), 'es' (Spanish).
schemas:
ApiError:
type: object
properties:
error:
type: string
description: |
A translated error message based on the Accept-Language header.
If the translation is missing or language is not supported, defaults to English.
Example translations:
- en: "Unauthorized: missing or invalid x-user header"
- es: "No autorizado: falta o es inválido el encabezado x-user"
example: "Unauthorized: missing or invalid x-user header"
paths:
/auth/login:
post:
summary: Login via Wallet Signature
description: Authenticate user by verifying an Ed25519 signature of a previously issued nonce.
tags:
- Auth
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [amount, currency]
properties:
amount:
oneOf:
- type: number
- type: string
currency:
type: string
destination:
type: string
responses:
"200":
description: Flow created
"401":
description: Unauthorized
"501":
description: Anchor not configured
/anchor/withdraw:
post:
summary: Start anchor withdraw flow
description: >
Protected route. Starts a USDC -> fiat flow against the configured anchor.
Returns a URL and/or flow steps. Returns 501 when anchor is not configured.
required:
- address
- signature
properties:
address:
type: string
description: Stellar public key
signature:
type: string
description: Base64 encoded signature
responses:
'200':
description: Successfully authenticated, returns a session cookie.
content:
application/json:
schema:
type: object
properties:
ok:
type: boolean
address:
type: string
'400':
description: Missing address or signature
'401':
description: Invalid signature or expired nonce
'500':
description: Server error
/split:
get:
summary: Get Split Configuration
description: Fetch the current user's allocation percentages.
security:
- cookieAuth: []
tags:
- Split
responses:
'200':
description: Returns configuration
content:
application/json:
schema:
type: object
properties:
percentages:
type: object
properties:
savings:
type: number
bills:
type: number
insurance:
type: number
family:
type: number
'404':
description: Split config not found
post:
summary: Update Split Configuration
security:
- cookieAuth: []
tags:
- Split
responses:
'200':
description: Configuration updated
/split/calculate:
get:
summary: Calculate Split Allocation
description: Given an amount, calculate the allocation based on the user's split settings.
security:
- cookieAuth: []
tags:
- Split
parameters:
- in: query
name: amount
schema:
type: number
required: true
description: The gross amount to split
responses:
'200':
description: Calculated amounts
/remittance/allocate:
post:
summary: Allocate Remittance
description: Record a remittance and allocate the funds accordingly.
security:
- cookieAuth: []
tags:
- Remittance
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [amount, currency]
properties:
amount:
oneOf:
- type: number
- type: string
currency:
type: string
destinationAccount:
type: string
responses:
"200":
description: Flow created
"401":
description: Unauthorized
"501":
description: Anchor not configured
/admin/cache/clear:
post:
summary: Clear in-memory caches
description: Admin-only route protected by X-Admin-Key or admin cookie.
responses:
"200":
description: Caches cleared
"401":
description: Unauthorized
/admin/users:
get:
summary: List recent users
description: Admin-only route protected by X-Admin-Key or admin cookie.
parameters:
- in: query
name: limit
schema:
type: integer
responses:
"200":
description: User list
"401":
description: Unauthorized
/admin/audit:
get:
summary: List audit events
description: Admin-only route protected by X-Admin-Key or admin cookie.
parameters:
- in: query
name: limit
schema:
type: integer
responses:
"200":
description: Audit events
"401":
description: Unauthorized
components: {}
required:
- txHash
- amount
properties:
txHash:
type: string
amount:
type: number
responses:
'200':
description: Allocation success
/bills:
get:
summary: Get Legacy Bills
security:
- cookieAuth: []
tags:
- Bills
responses:
'200':
description: List of bills
post:
summary: Create or Pay Legacy Bill
security:
- cookieAuth: []
tags:
- Bills
responses:
'200':
description: Success
/v1/bills:
post:
summary: Create a new Bill
security:
- xUserHeader: []
tags:
- Bills (v1)
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
- amount
- dueDate
properties:
name:
type: string
amount:
type: number
dueDate:
type: string
format: date-time
recurring:
type: boolean
frequencyDays:
type: number
responses:
'200':
description: Returns XDR for the transaction
'400':
description: Invalid input parameters
/v1/bills/{id}/cancel:
post:
summary: Cancel a Bill
security:
- xUserHeader: []
tags:
- Bills (v1)
parameters:
- in: path
name: id
required: true
schema:
type: string
responses:
'200':
description: Returns XDR to cancel the bill
/v1/bills/{id}/pay:
post:
summary: Pay a Bill
security:
- xUserHeader: []
tags:
- Bills (v1)
parameters:
- in: path
name: id
required: true
schema:
type: string
responses:
'200':
description: Returns XDR to pay the bill
/insurance:
get:
summary: Get Active Policies
security:
- xUserHeader: []
- cookieAuth: []
tags:
- Insurance
parameters:
- in: query
name: owner
required: true
schema:
type: string
responses:
'200':
description: List of active policies
/v1/insurance:
post:
summary: Create Insurance Policy
security:
- xUserHeader: []
tags:
- Insurance (v1)
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
- coverageType
- monthlyPremium
- coverageAmount
properties:
name:
type: string
coverageType:
type: string
monthlyPremium:
type: number
coverageAmount:
type: number
responses:
'200':
description: Returns XDR
/v1/insurance/{id}/deactivate:
post:
summary: Deactivate Insurance Policy
security:
- xUserHeader: []
tags:
- Insurance (v1)
parameters:
- in: path
name: id
required: true
schema:
type: string
responses:
'200':
description: Returns XDR
/v1/insurance/{id}/pay:
post:
summary: Pay Insurance Premium
security:
- xUserHeader: []
tags:
- Insurance (v1)
parameters:
- in: path
name: id
required: true
schema:
type: string
responses:
'200':
description: Returns XDR
/goals:
get:
summary: Get Savings Goals
security:
- cookieAuth: []
tags:
- Goals
responses:
'200':
description: Array of goals
post:
summary: Create Savings Goal
security:
- cookieAuth: []
tags:
- Goals
responses:
'200':
description: Success
/family:
get:
summary: Get Family Members
security:
- cookieAuth: []
tags:
- Family
responses:
'200':
description: Array of family members
post:
summary: Add Family Member
security:
- cookieAuth: []
tags:
- Family
responses:
'200':
description: Success
/send:
post:
summary: Send Transaction
security:
- cookieAuth: []
tags:
- Send
responses:
'200':
description: Returns transaction Id