forked from Nova-reward/Nova-Rewards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-spec.yaml
More file actions
273 lines (273 loc) · 7.61 KB
/
Copy pathapi-spec.yaml
File metadata and controls
273 lines (273 loc) · 7.61 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
openapi: 3.0.0
info:
title: NovaRewards API
version: 1.0.0
description: API documentation for NovaRewards backend
servers:
- url: http://localhost:3001/api/v1
description: Local development server (current v1)
- url: https://api.novarewards.com/api/v1
description: Production server (current v1)
- url: http://localhost:3001/api
description: Local development legacy alias for v1
- url: https://api.novarewards.com/api
description: Production legacy alias for v1
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
schemas:
ErrorResponse:
type: object
properties:
success:
type: boolean
example: false
error:
type: string
example: validation_error
message:
type: string
example: Validation failed
details:
type: object
User:
type: object
properties:
id:
type: integer
email:
type: string
firstName:
type: string
lastName:
type: string
role:
type: string
created_at:
type: string
format: date-time
Transaction:
type: object
properties:
id:
type: integer
txHash:
type: string
txType:
type: string
enum: [distribution, redemption, transfer]
amount:
type: string
fromWallet:
type: string
toWallet:
type: string
merchantId:
type: integer
campaignId:
type: integer
stellarLedger:
type: integer
created_at:
type: string
format: date-time
security:
- bearerAuth: []
paths:
/auth/register:
post:
summary: Register a new user
description: Creates a new user account with email and password
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- email
- password
- firstName
- lastName
properties:
email:
type: string
format: email
example: user@example.com
password:
type: string
minLength: 8
example: password123
firstName:
type: string
example: John
lastName:
type: string
example: Doe
responses:
201:
description: User created successfully
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
data:
$ref: '#/components/schemas/User'
400:
description: Validation error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
409:
description: Duplicate email
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/auth/login:
post:
summary: Login user
description: Authenticates user and returns JWT tokens
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- email
- password
properties:
email:
type: string
format: email
password:
type: string
responses:
200:
description: Login successful
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
data:
type: object
properties:
accessToken:
type: string
refreshToken:
type: string
user:
$ref: '#/components/schemas/User'
400:
description: Invalid credentials
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/transactions/record:
post:
summary: Record a transaction
description: Verifies a Stellar transaction on Horizon then records it in the database
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- txHash
- txType
- amount
properties:
txHash:
type: string
example: abc123
txType:
type: string
enum: [distribution, redemption, transfer]
example: redemption
amount:
type: string
example: "100.0000000"
fromWallet:
type: string
example: GB...
toWallet:
type: string
example: GB...
merchantId:
type: integer
campaignId:
type: integer
responses:
201:
description: Transaction recorded
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
data:
$ref: '#/components/schemas/Transaction'
400:
description: Validation error or transaction not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
409:
description: Duplicate transaction
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/transactions/merchant-totals:
get:
summary: Get merchant transaction totals
description: Returns total NOVA distributed and redeemed for the authenticated merchant
security:
- bearerAuth: []
responses:
200:
description: Totals retrieved
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
data:
type: object
properties:
totalDistributed:
type: string
totalRedeemed:
type: string
401:
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
# Note: This is a sample of the full API spec. In a real implementation, all endpoints from all route files would be documented here with full details, examples, and error codes.</content>
<parameter name="filePath">/workspaces/Nova-Rewards/docs/api-spec.yaml