-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yml
3391 lines (3388 loc) · 87.1 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
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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.0
servers:
# Added by API Auto Mocking Plugin
- description: SwaggerHub API Auto Mocking
url: https://virtserver.swaggerhub.com/Finorator/PoppyQuiz/1.0.3
- url: 'https://virtserver.swaggerhub.com/Finorator/PoppyQuiz/1.0.0'
- url: 'http://virtserver.swaggerhub.com/Finorator/PoppyQuiz/1.0.0'
info:
description: >
This is an API specifications for PoppyQuiz (A real time multi player social
trivia platform). You can find out more about PoppyQuiz at
[https://poppyquiz.com](https://poppyquiz.com) or on
at [twitter @poppyquiz](https://twitter.com/poppyquiz)
at [facebook @poppyquiz](https://www.facebook.com/poppyquiz/).
version: "1.0.3"
title: PoppyQuiz API
termsOfService: 'https://poppyquiz.com/term-condition'
contact:
email: care@poppyquiz.com
license:
name: 'Licensed by [finorator inc]'
tags:
- name: category
description: All resources and operations about poppyquiz categories
- name: topic
description: All resources and operations about poppyquiz topics
- name: question
description: All resources and operations about poppyquiz questions
- name: user
description: All resources and operations about poppyquiz users
- name: interest
description: All resources and operations about master and users interests
- name: game
description: All resources and operations about games
- name: post
description: All resources and operations about posts
- name: chat
description: All resources and operations about chat
- name: notification
description: All resources and operations about users notifications
- name: others
description: All other resources and operations
paths:
/register:
post:
tags:
- user
summary: Register user with App
description: Register user with App.
operationId: registerUser
requestBody:
$ref: '#/components/requestBodies/SignInRequest'
responses:
'200':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
security: []
/login:
post:
tags:
- user
summary: Logs user into App
description: Logs user into App
operationId: loginUser
requestBody:
$ref: '#/components/requestBodies/SignInRequest'
responses:
'200':
description: successful operation
headers:
X-Rate-Limit:
description: calls per hour allowed by the user
schema:
type: integer
format: int32
X-Expires-After:
description: date in UTC when token expires
schema:
type: string
format: date-time
content:
application/json:
schema:
$ref: '#/components/schemas/SignInApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
security: []
/auth/social:
post:
tags:
- user
summary: Register or SignIn or link user to social
account into app using Google/Facebook/Llinkedin account
description: Register new user, SignIn existing user and link existing user to social
account into application using Google/Facebook/Linkedin account
operationId: authSocial
responses:
'200':
description: successful operation
headers:
X-Rate-Limit:
description: calls per hour allowed by the user
schema:
type: integer
format: int32
X-Expires-After:
description: date in UTC when token expires
schema:
type: string
format: date-time
content:
application/json:
schema:
type: string
'400':
description: Invalid username/password supplied
security: []
requestBody:
content:
application/json:
schema:
type: object
required:
- redirectUrl
- provider
properties:
redirectUrl:
type: string
format: url
provider:
type: string
description: The login provider google or facebook or twitter
enum:
- google
- facebook
- linkedin
required: true
/logout:
post:
tags:
- user
summary: Logs out current logged in user session
description: Logs out current logged in user session
operationId: logoutUser
responses:
'200':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
/contact:
post:
tags:
- user
summary: Send message to App care team
description: Send message to App care team.
operationId: contact
requestBody:
$ref: '#/components/requestBodies/ContactRequest'
responses:
'200':
$ref: '#/components/responses/ApiResponse'
'201':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
security: []
/subscribe:
post:
tags:
- user
summary: Subscribe to App news and updates
description: Subscribe to App news and updates.
operationId: subscribe
requestBody:
$ref: '#/components/requestBodies/SubscribeRequest'
responses:
'200':
$ref: '#/components/responses/ApiResponse'
'201':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
security: []
/password/forgot:
post:
tags:
- user
summary: Retrieve your App password
description: Retrieve your App password.
operationId: forgotPassword
requestBody:
$ref: '#/components/requestBodies/ForgotPasswordRequest'
responses:
'200':
$ref: '#/components/responses/ApiResponse'
'201':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
/password/reset:
post:
tags:
- user
summary: Reset your App password
description: Reset your App password.
operationId: resetPassword
requestBody:
$ref: '#/components/requestBodies/ResetPasswordRequest'
responses:
'200':
$ref: '#/components/responses/ApiResponse'
'201':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
/refer:
post:
tags:
- user
summary: refer Refer friends to join app using their email
description: Refer friends to join app using their email
operationId: refer
requestBody:
$ref: '#/components/requestBodies/ReferralRequest'
responses:
'200':
$ref: '#/components/responses/ApiResponse'
'201':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
'/refer/{userId}':
get:
tags:
- user
summary: Get your all referral
description: Get your all referral.
operationId: getReferrals
parameters:
- name: userId
in: path
description: Your User Id
required: true
schema:
type: integer
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Referral'
'201':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
put:
tags:
- user
summary: Refer friends to join app using your referral link & Update referal status when a friend joined through your referral link
description: Refer friends to join app using your referral link & Update referal status when a friend joined through your referral link
operationId: addOrUpdateReferral
parameters:
- name: userId
in: path
description: Friend's userId who has set you request to join
required: true
schema:
type: integer
requestBody:
$ref: '#/components/requestBodies/ReferralRequest'
responses:
'200':
$ref: '#/components/responses/ApiResponse'
'201':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
/users:
post:
tags:
- user
summary: Create user profile by user on first login
description: Create user profile by user on first login.
operationId: createUserProfile
requestBody:
$ref: '#/components/requestBodies/UserProfile'
responses:
'200':
$ref: '#/components/responses/ApiResponse'
'201':
$ref: '#/components/responses/ApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
get:
tags:
- user
summary: Get paginated user profile summary card based on query parameters
operationId: getUserProfile
parameters:
- name: name
in: query
description: FirstName or LastName or UserName of user
schema:
type: string
- name: gender
in: query
description: Gender of user
schema:
type: string
- name: ageStart
in: query
description: Age of user greater than and equal to this
schema:
type: integer
- name: ageEnd
in: query
description: Age of user less than and equal to this
schema:
type: integer
- name: country
in: query
description: Country of user
schema:
type: string
- name: location
in: query
description: >-
Find user near 100 km of comma seperated latitude and longitude
value (example location=40.7127837,-74.0059413)
schema:
type: string
- name: interests
in: query
description: Array of interestIds
schema:
type: array
items:
type: integer
- name: offset
in: query
description: Starting position of result set
schema:
type: integer
default: 0
- name: limit
in: query
description: Number of result set you want to retreive
schema:
type: integer
default: 20
responses:
'200':
$ref: '#/components/responses/ProfileApiResponse'
'201':
$ref: '#/components/responses/ProfileApiResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}':
get:
tags:
- user
summary: Get user profile by Id
operationId: getUserProfileById
parameters:
- name: userId
in: path
description: The userId that needs to be fetched. Use 55111234567890 for testing.
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/UserProfile'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
put:
tags:
- user
summary: Updated user profile by Id
description: This can only be done by the logged in user.
operationId: updateUserProfile
parameters:
- in: header
name: token
required: true
schema:
type: string
- name: userId
in: path
description: userId that need to be updated
required: true
schema:
type: string
responses:
'400':
description: Invalid user supplied
'404':
description: User not found
requestBody:
$ref: '#/components/requestBodies/UserProfile'
delete:
tags:
- user
summary: Delete user profile by userId
description: This can only be done by the logged in user.
operationId: deleteUserProfile
parameters:
- in: header
name: token
required: true
schema:
type: string
- name: userId
in: path
description: The userId that needs to be deleted
required: true
schema:
type: string
responses:
'400':
description: Invalid userId supplied
'404':
description: User not found
/upload/image:
post:
tags:
- user
summary: Upload image by user
description: Update user profile picture or wallpaper
operationId: uploadImage
parameters:
- in: header
name: token
required: true
schema:
type: string
responses:
'400':
description: Invalid user supplied
'404':
description: User not found
requestBody:
content:
application/json:
schema:
type: object
required:
- userId
- name
- type
- content
properties:
userId:
type: integer
name:
type: string
type:
type: string
description: The image uploaded for
enum:
- profile
- wallpaper
- topic
content:
type: string
format: base64
required: true
'/users/{userId}/followers':
get:
tags:
- user
summary: Get followers of a user
description: Returns a paginated list of followers for an user
operationId: getFollowersOfUser
parameters:
- name: userId
in: path
description: The unique user Id
required: true
schema:
type: integer
- name: offset
in: query
description: Starting position of result set
schema:
type: integer
default: 0
- name: limit
in: query
description: Number of result set you want to retreive
schema:
type: integer
default: 20
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/UserProfile'
'400':
description: Invalid user ID supplied
'404':
description: User not found
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
post:
tags:
- user
summary: block followers of a user
operationId: blockFollowers
parameters:
- in: header
name: token
required: true
schema:
type: string
- name: userId
in: path
required: true
description: The id of a user
schema:
type: integer
responses:
'405':
description: Invalid input
requestBody:
content:
application/json:
schema:
type: array
items:
type: integer
description: Array of followerIds
required: true
'/users/{userId}/followings':
get:
tags:
- user
summary: Get all users followed by a user
description: Returns a paginated list of users followed by a user
operationId: getFollowingsOfUser
parameters:
- name: userId
in: path
description: The unique user Id
required: true
schema:
type: integer
- name: offset
in: query
description: Starting position of result set
schema:
type: integer
default: 0
- name: limit
in: query
description: Number of result set you want to retreive
schema:
type: integer
default: 20
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/UserProfile'
'400':
description: Invalid user ID supplied
'404':
description: User not found
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}/topics':
get:
tags:
- user
summary: Get topics created by user
description: Returns user's topics
operationId: getUserTopics
parameters:
- name: userId
in: path
description: The unique user Id
required: true
schema:
type: integer
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Topic'
'400':
description: Invalid user ID supplied
'404':
description: User not found
security:
- Oauth2:
- 'read:topics'
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}/summary':
get:
tags:
- user
summary: Get user's profile summary
description: >-
Returns total game played, number of topics created, number of topics
followed, number of followers, number of followings by a user
operationId: getUserProfileSummary
parameters:
- name: userId
in: path
description: The unique user Id
required: true
schema:
type: integer
responses:
'200':
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/UserSummary'
'400':
description: Invalid user ID supplied
'404':
description: User not found
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}/achievements':
get:
tags:
- user
summary: Get user's achievements
description: Returns user's achievements
operationId: getUserAchievements
parameters:
- name: userId
in: path
description: The unique user Id
required: true
schema:
type: integer
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/UserAchievement'
'400':
description: Invalid user ID supplied
'404':
description: User not found
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}/games':
get:
tags:
- user
summary: Get paginated user's game history
description: Returns user's game history
operationId: getUserGames
parameters:
- name: userId
in: path
description: The unique user Id
required: true
schema:
type: integer
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Game'
'400':
description: Invalid user ID supplied
'404':
description: User not found
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}/games/summary':
get:
tags:
- user
summary: Get user's game summary
description: Returns user's game summary
operationId: getUserGamesSummary
parameters:
- name: userId
in: path
description: The unique user Id
required: true
schema:
type: integer
responses:
'200':
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/GameSummary'
'400':
description: Invalid user ID supplied
'404':
description: User not found
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}/followings/suggestion':
get:
tags:
- user
summary: Get suggested users to follow
description: >-
Returns a paginated list of suggested users. user followed you, users
played or followed a topic created by you, User with similar interest as
yours
operationId: getFollowingsSuggestion
parameters:
- name: userId
in: path
description: The unique user Id
required: true
schema:
type: integer
- name: offset
in: query
description: Starting position of result set
schema:
type: integer
default: 0
- name: limit
in: query
description: Number of result set you want to retreive
schema:
type: integer
default: 20
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/UserProfile'
'400':
description: Invalid user ID supplied
'404':
description: User not found
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}/topics/suggestion':
get:
tags:
- user
summary: Get suggested topics to follow
description: >-
Returns a paginated list of suggested topics. you played in the topic
but not following, topic's category matches with your interest's
category
operationId: getTopicsSuggestion
parameters:
- name: userId
in: path
description: The unique user Id
required: true
schema:
type: integer
- name: offset
in: query
description: Starting position of result set
schema:
type: integer
default: 0
- name: limit
in: query
description: Number of result set you want to retreive
schema:
type: integer
default: 20
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Topic'
'400':
description: Invalid user ID supplied
'404':
description: User not found
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}/{profileId}}/topics':
get:
tags:
- user
summary: Get mutal topics followed by two users
description: >-
Returns a paginated list of mutual topics between you and the profile
you are visiting
operationId: getMutualTopics
parameters:
- name: userId
in: path
description: The unique user Id (you)
required: true
schema:
type: integer
- name: profileId
in: path
description: The unique user Id of the profile you are visiting
required: true
schema:
type: integer
- name: offset
in: query
description: Starting position of result set
schema:
type: integer
default: 0
- name: limit
in: query
description: Number of result set you want to retreive
schema:
type: integer
default: 20
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Topic'
'400':
description: Invalid user ID or Profile Id supplied
'404':
description: User(s) not found
security:
- Oauth2:
- 'read:profiles'
- ApiKeyAuth: []
UserIdAuth: []
'/users/{userId}/{profileId}}/games':
get:
tags:
- user
summary: Get all games played between two users
description: >-
Returns a paginated list of games played between you and the profile you
are visiting
operationId: getMutualGames
parameters:
- name: userId
in: path
description: The unique user Id (you)
required: true
schema:
type: integer
- name: profileId
in: path
description: The unique user Id of the profile you are visiting
required: true
schema:
type: integer
- name: offset
in: query
description: Starting position of result set
schema:
type: integer
default: 0
- name: limit
in: query
description: Number of result set you want to retreive
schema:
type: integer
default: 20
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array