-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswagger.yaml
More file actions
352 lines (333 loc) · 8.95 KB
/
Copy pathswagger.yaml
File metadata and controls
352 lines (333 loc) · 8.95 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
openapi: 3.0.0
info:
title: CodeSwipe API
version: 1.0.0
description: |
API documentation for the CodeSwipe backend application.
CodeSwipe is a developer-focused social networking platform that enables users to connect, collaborate, and grow their professional network.
This backend API supports a wide range of features including user authentication, profile management, connection requests, real-time chat, and membership upgrades via Razorpay-integrated payment processing.
The platform offers tiered membership options—Gold and Silver—with different levels of access and privileges.
Scheduled background jobs (via cron) are used for periodic tasks such as data maintenance and notification handling.
This documentation outlines all public endpoints used by the client application to interact with the CodeSwipe backend.
servers:
- url: https://codeswipe-backend.onrender.com
description: Server
paths:
/signup:
post:
tags:
- Authentication
summary: Register a new user
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- firstName
- lastName
- emailId
- password
properties:
firstName:
type: string
lastName:
type: string
emailId:
type: string
password:
type: string
format: password
age:
type: integer
gender:
type: string
photoUrl:
type: string
about:
type: string
skills:
type: array
items:
type: string
responses:
'201':
description: User registered successfully
'400':
description: Error registering the user
/login:
post:
tags:
- Authentication
summary: Log in a user
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- emailId
- password
properties:
emailId:
type: string
password:
type: string
format: password
responses:
'200':
description: User logged in successfully
'400':
description: Error logging in the user
/logout:
post:
tags:
- Authentication
summary: Log out the current user
responses:
'200':
description: User logged out successfully
'400':
description: Error logging out the user
/profile/view:
get:
tags:
- Profile
summary: View the logged-in user's profile
security:
- cookieAuth: []
responses:
'200':
description: Successfully fetched user profile
'500':
description: Error fetching user details
/profile/edit:
patch:
tags:
- Profile
summary: Edit the logged-in user's profile
security:
- cookieAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
additionalProperties: true
responses:
'200':
description: Profile updated successfully
'500':
description: Error updating profile details
/profile/forgotpassword:
patch:
tags:
- Profile
summary: Reset user password via email ID
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- emailId
- newPassword
properties:
emailId:
type: string
newPassword:
type: string
format: password
responses:
'200':
description: Password updated successfully
'404':
description: User not found
'500':
description: Error changing the password
/request/send/{status}/{toUserId}:
post:
tags:
- Connection Request
summary: Send a connection request to another user
security:
- cookieAuth: []
parameters:
- name: status
in: path
required: true
schema:
type: string
enum: [ignored, interested]
- name: toUserId
in: path
required: true
schema:
type: string
responses:
'200':
description: Connection request sent successfully
'400':
description: Invalid status or connection already exists
'404':
description: Target user not found
'500':
description: Error sending connection request
/request/review/{status}/{requestId}:
post:
tags:
- Connection Request
summary: Review a received connection request
security:
- cookieAuth: []
parameters:
- name: status
in: path
required: true
schema:
type: string
enum: [accepted, rejected]
- name: requestId
in: path
required: true
schema:
type: string
responses:
'200':
description: Connection request reviewed successfully
'400':
description: Invalid status
'404':
description: Connection request not found
'500':
description: Error reviewing connection request
/user/requests/received:
get:
tags:
- User
summary: Get all received connection requests
security:
- cookieAuth: []
responses:
'200':
description: List of received connection requests
'500':
description: Error fetching requests
/user/connections:
get:
tags:
- User
summary: Get all accepted connections of the logged-in user
security:
- cookieAuth: []
responses:
'200':
description: List of accepted connections
'500':
description: Error fetching connection list
/user/feed:
get:
tags:
- User
summary: Get suggested user feed for logged-in user
security:
- cookieAuth: []
parameters:
- name: page
in: query
schema:
type: integer
default: 1
- name: limit
in: query
schema:
type: integer
default: 10
maximum: 50
responses:
'200':
description: List of users to show in feed
'500':
description: Error fetching users
/payment/create:
post:
tags:
- Payment
summary: Create a Razorpay order for membership
security:
- cookieAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
membershipType:
type: string
example: gold
responses:
'200':
description: Razorpay order created
'500':
description: Error creating payment order
/payment/webhook:
post:
tags:
- Payment
summary: Handle Razorpay webhook for payment status update
requestBody:
required: true
content:
application/json:
schema:
type: object
description: Razorpay webhook payload
responses:
'200':
description: Webhook processed successfully
'400':
description: Invalid webhook signature
'500':
description: Error processing webhook
/premium/verify:
get:
tags:
- Payment
summary: Verify if the user has premium membership
security:
- cookieAuth: []
responses:
'200':
description: Returns user details with premium status
'500':
description: Error verifying premium status
/chat/{targetUserId}:
get:
tags:
- Chat
summary: Get or create a chat thread with a target user
security:
- cookieAuth: []
parameters:
- name: targetUserId
in: path
required: true
schema:
type: string
description: ID of the user to chat with
responses:
'200':
description: Returns the chat thread with messages
'500':
description: Error retrieving or creating chat
components:
securitySchemes:
cookieAuth:
type: apiKey
in: cookie
name: token