-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-docs.json
More file actions
3463 lines (3463 loc) · 109 KB
/
api-docs.json
File metadata and controls
3463 lines (3463 loc) · 109 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
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.1",
"info": {
"title": "OAuth2 Module API",
"description": "API Documentation for OAuth2 Module",
"contact": {
"name": "OAuth2 Support",
"url": "https://github.com/yourusername/oauth2-module",
"email": "support@example.com"
},
"license": {
"name": "MIT License",
"url": "https://opensource.org/licenses/MIT"
},
"version": "1.0"
},
"servers": [{ "url": "/", "description": "Local Server" }],
"security": [{ "bearerAuth": [] }],
"tags": [
{ "name": "Authentication", "description": "인증 관련 API" },
{
"name": "고객 피드백",
"description": "고객 음식 피드백 관리 API - 음식 리뷰, 사진 업로드, 설문 응답을 통합 관리합니다"
},
{ "name": "Token Exchange", "description": "토큰 교환 API" },
{ "name": "User", "description": "사용자 정보 관련 API" },
{ "name": "사진 API", "description": "사진 관련 API" },
{ "name": "FoodItem", "description": "음식 관련 API" },
{ "name": "Store", "description": "매장 관리 API" },
{
"name": "리워드",
"description": "고객 리워드 관리 API - 피드백 작성에 따른 리워드 생성, 교환, 사용 처리를 관리합니다"
}
],
"paths": {
"/api/user/profile/taste": {
"get": {
"tags": ["User"],
"summary": "고객 취향 정보 조회",
"description": "현재 로그인한 사용자의 고객 취향 정보(매운맛, 식사량, 식사 지출)를 조회합니다.",
"operationId": "getCustomerTaste",
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseCustomerTasteDto"
}
}
}
}
},
"security": [{ "bearerAuth": [] }]
},
"put": {
"tags": ["User"],
"summary": "고객 취향 정보 수정",
"description": "현재 로그인한 사용자의 고객 취향 정보(매운맛, 식사량, 식사 지출)를 수정합니다. 각 값은 1-5 범위여야 합니다.",
"operationId": "updateCustomerTaste",
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/CustomerTasteDto" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseCustomerTasteDto"
}
}
}
}
},
"security": [{ "bearerAuth": [] }]
}
},
"/api/stores/{storeId}": {
"get": {
"tags": ["Store"],
"summary": "매장 상세 조회",
"description": "특정 매장의 상세 정보를 조회합니다.",
"operationId": "getStore",
"parameters": [
{
"name": "storeId",
"in": "path",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseStoreResponse"
}
}
}
}
}
},
"put": {
"tags": ["Store"],
"summary": "매장 정보 수정",
"description": "매장 정보를 수정합니다. 매장 관리 권한이 필요합니다.",
"operationId": "updateStore",
"parameters": [
{
"name": "storeId",
"in": "path",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/StoreRequest" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseStoreResponse"
}
}
}
}
}
},
"delete": {
"tags": ["Store"],
"summary": "매장 삭제",
"description": "매장을 삭제합니다. 소유자만 삭제할 수 있습니다.",
"operationId": "deleteStore",
"parameters": [
{
"name": "storeId",
"in": "path",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": { "$ref": "#/components/schemas/ApiResponseVoid" }
}
}
}
}
}
},
"/api/rewards/redemptions/{redemptionId}/use": {
"put": {
"tags": ["리워드"],
"summary": "리워드 사용 처리",
"description": "교환된 리워드를 사용 처리합니다. 매장에서 주문 시 리워드를 적용할 때 사용합니다.",
"operationId": "markRedemptionAsUsed",
"parameters": [
{
"name": "redemptionId",
"in": "path",
"description": "교환 ID",
"required": true,
"schema": { "type": "integer", "format": "int64" },
"example": 1
}
],
"responses": {
"200": {
"description": "리워드 사용 처리 성공",
"content": {
"application/json": {
"example": {
"success": true,
"message": "성공했습니다",
"data": null
}
}
}
},
"400": {
"description": "잘못된 요청 (이미 사용된 리워드, 만료된 리워드 등)",
"content": {
"*/*": {
"schema": { "$ref": "#/components/schemas/ApiResponseVoid" }
}
}
},
"404": {
"description": "리워드 교환 내역을 찾을 수 없습니다",
"content": {
"*/*": {
"schema": { "$ref": "#/components/schemas/ApiResponseVoid" }
}
}
}
}
}
},
"/api/rewards/redemptions/{redemptionId}/cancel": {
"put": {
"tags": ["리워드"],
"summary": "리워드 사용 취소",
"description": "사용된 리워드의 사용을 취소하여 다시 사용 가능하게 만듭니다. 주문 취소 시 리워드를 복구할 때 사용합니다.",
"operationId": "cancelRedemption",
"parameters": [
{
"name": "redemptionId",
"in": "path",
"description": "교환 ID",
"required": true,
"schema": { "type": "integer", "format": "int64" },
"example": 1
}
],
"responses": {
"404": {
"description": "리워드 교환 내역을 찾을 수 없습니다",
"content": {
"*/*": {
"schema": { "$ref": "#/components/schemas/ApiResponseVoid" }
}
}
},
"400": {
"description": "잘못된 요청 (사용되지 않은 리워드, 만료된 리워드 등)",
"content": {
"*/*": {
"schema": { "$ref": "#/components/schemas/ApiResponseVoid" }
}
}
},
"200": {
"description": "리워드 사용 취소 성공",
"content": {
"application/json": {
"example": {
"success": true,
"message": "성공했습니다",
"data": null
}
}
}
}
}
}
},
"/api/foods/{foodId}": {
"get": {
"tags": ["FoodItem"],
"summary": "음식 상세 조회",
"description": "특정 음식의 상세 정보를 조회합니다.",
"operationId": "getFoodItem",
"parameters": [
{
"name": "foodId",
"in": "path",
"description": "음식 ID",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseFoodItemResponse"
}
}
}
}
}
},
"put": {
"tags": ["FoodItem"],
"summary": "음식 수정",
"description": "기존 음식 정보를 수정합니다.",
"operationId": "updateFoodItem",
"parameters": [
{
"name": "foodId",
"in": "path",
"description": "음식 ID",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/FoodItemRequest" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseFoodItemResponse"
}
}
}
}
},
"security": [{ "bearerAuth": [] }]
},
"delete": {
"tags": ["FoodItem"],
"summary": "음식 삭제",
"description": "음식을 삭제합니다 (소프트 딜리트).",
"operationId": "deleteFoodItem",
"parameters": [
{
"name": "foodId",
"in": "path",
"description": "음식 ID",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": { "$ref": "#/components/schemas/ApiResponseVoid" }
}
}
}
},
"security": [{ "bearerAuth": [] }]
}
},
"/api/foods/{foodId}/thumbnail": {
"put": {
"tags": ["FoodItem"],
"summary": "음식 대표 사진 설정",
"description": "특정 음식의 대표 사진 URL을 설정합니다.",
"operationId": "updateThumbnail",
"parameters": [
{
"name": "foodId",
"in": "path",
"description": "음식 ID",
"required": true,
"schema": { "type": "integer", "format": "int64" }
},
{
"name": "photoUrl",
"in": "query",
"description": "대표 사진 URL",
"required": true,
"schema": { "type": "string" }
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseFoodItemResponse"
}
}
}
}
},
"security": [{ "bearerAuth": [] }]
}
},
"/api/customer-feedback/bulk-viewed": {
"put": {
"tags": ["고객 피드백"],
"summary": "피드백 다건 읽음 처리",
"description": "사장님이 여러 피드백을 한 번에 읽음 처리합니다. 최대 100개까지 가능합니다.",
"operationId": "markFeedbacksAsViewed",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FeedbackBulkViewedRequest"
}
}
},
"required": true
},
"responses": {
"401": {
"description": "인증이 필요합니다",
"content": {
"*/*": {
"schema": { "$ref": "#/components/schemas/ApiResponseVoid" }
}
}
},
"200": {
"description": "읽음 처리 성공",
"content": {
"application/json": {
"example": {
"success": true,
"message": "성공했습니다",
"data": null
}
}
}
},
"403": {
"description": "해당 매장의 사장님만 처리 가능합니다",
"content": {
"*/*": {
"schema": { "$ref": "#/components/schemas/ApiResponseVoid" }
}
}
}
}
}
},
"/api/stores": {
"post": {
"tags": ["Store"],
"summary": "매장 생성",
"description": "새로운 매장을 생성합니다. 생성자는 자동으로 매장의 소유자가 됩니다.",
"operationId": "createStore",
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/StoreRequest" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseStoreResponse"
}
}
}
}
}
}
},
"/api/stores/{storeId}/members": {
"get": {
"tags": ["Store"],
"summary": "매장 멤버 목록 조회",
"description": "매장에 속한 멤버 목록을 조회합니다.",
"operationId": "getStoreMembers",
"parameters": [
{
"name": "storeId",
"in": "path",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseListMemberResponse"
}
}
}
}
}
},
"post": {
"tags": ["Store"],
"summary": "매장 멤버 초대",
"description": "매장에 새로운 멤버를 초대합니다.",
"operationId": "inviteMember",
"parameters": [
{
"name": "storeId",
"in": "path",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/MemberInviteRequest" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseMemberResponse"
}
}
}
}
}
}
},
"/api/rewards/redeem": {
"post": {
"tags": ["리워드"],
"summary": "리워드 교환",
"description": "현재 로그인한 고객이 리워드를 교환합니다. 피드백 수가 부족하거나 이미 교환한 리워드는 교환할 수 없습니다.",
"operationId": "redeemReward",
"requestBody": {
"description": "리워드 교환 요청",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RewardRedemptionRequest"
},
"example": { "rewardId": 1 }
}
},
"required": true
},
"responses": {
"200": {
"description": "리워드 교환 성공",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RewardRedemptionResponse"
},
"example": {
"success": true,
"message": "성공했습니다",
"data": {
"id": 1,
"rewardId": 1,
"rewardTitle": "10% 할인",
"status": "REDEEMED",
"expiresAt": "2024-02-01T10:00:00",
"redeemedAt": "2024-01-01T10:00:00"
}
}
}
}
},
"400": {
"description": "잘못된 요청 (피드백 수 부족, 이미 교환한 리워드 등)",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseRewardRedemptionResponse"
}
}
}
},
"401": {
"description": "인증이 필요합니다",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseRewardRedemptionResponse"
}
}
}
},
"404": {
"description": "리워드를 찾을 수 없습니다",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseRewardRedemptionResponse"
}
}
}
}
}
}
},
"/api/photos/tmp/presigned-url": {
"post": {
"tags": ["사진 API"],
"summary": "임시 폴더 Presigned URL 생성",
"description": "tmp 폴더에 업로드하기 위한 Presigned URL을 생성합니다.",
"operationId": "generateTmpPresignedUrl",
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/PhotoUploadRequest" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponsePhotoPresignedUrlResponse"
}
}
}
}
}
}
},
"/api/photos/register": {
"post": {
"tags": ["사진 API"],
"summary": "사진 정보 등록",
"description": "S3에 업로드 완료 후, 파일 메타데이터를 서버에 등록합니다.",
"operationId": "registerPhoto",
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/PhotoRegisterRequest" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponsePhotoResponse"
}
}
}
}
}
}
},
"/api/photos/presigned-url": {
"post": {
"tags": ["사진 API"],
"summary": "Presigned URL 생성",
"description": "클라이언트가 AWS S3에 파일을 직접 업로드하기 위해 사용하는 Presigned URL을 생성합니다.\n\n**클라이언트 처리 순서:**\n1. 이 API를 호출하여 `presignedUrl`과 `s3Key`를 받습니다.\n2. 받은 `presignedUrl`을 목적지로, 업로드할 파일의 원본 데이터를 body에 담아 **HTTP PUT** 요청을 보냅니다.\n - **주의:** `Content-Type` 헤더에 반드시 실제 파일의 MIME 타입(예: `image/jpeg`)을 포함해야 합니다.\n3. S3 업로드가 성공(HTTP 200 OK)하면, `/api/photos/register` API를 호출하여 업로드 완료 사실을 서버에 알립니다.\n - 이때 응답으로 받았던 `s3Key`와 파일의 원본 이름 등 필요한 메타데이터를 함께 전송합니다.\n",
"operationId": "generatePresignedUrl",
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/PhotoUploadRequest" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponsePhotoPresignedUrlResponse"
}
}
}
}
}
}
},
"/api/foods/store/{storeId}": {
"get": {
"tags": ["FoodItem"],
"summary": "매장별 음식 목록 조회",
"description": "특정 매장의 음식 목록을 페이지네이션하여 조회합니다.",
"operationId": "getFoodItems",
"parameters": [
{
"name": "storeId",
"in": "path",
"description": "매장 ID",
"required": true,
"schema": { "type": "integer", "format": "int64" }
},
{
"name": "pageable",
"in": "query",
"required": true,
"schema": { "$ref": "#/components/schemas/Pageable" }
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponsePageResponseFoodItemResponse"
}
}
}
}
},
"security": [{ "bearerAuth": [] }]
},
"post": {
"tags": ["FoodItem"],
"summary": "음식 생성",
"description": "새로운 음식을 생성합니다.",
"operationId": "createFoodItem",
"parameters": [
{
"name": "storeId",
"in": "path",
"description": "매장 ID",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/FoodItemRequest" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseFoodItemResponse"
}
}
}
}
},
"security": [{ "bearerAuth": [] }]
}
},
"/api/foods/menu/extract": {
"post": {
"tags": ["FoodItem"],
"summary": "메뉴 이미지에서 FoodItem 추출",
"description": "메뉴판 이미지를 업로드하여 AI로 메뉴 정보를 추출하고 FoodItem으로 저장합니다.",
"operationId": "startMenuExtraction",
"parameters": [
{
"name": "storeId",
"in": "query",
"required": true,
"schema": { "type": "integer", "format": "int64" }
}
],
"requestBody": {
"content": {
"multipart/form-data": {
"schema": {
"required": ["image"],
"type": "object",
"properties": {
"image": { "type": "string", "format": "binary" }
}
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseFoodItemExtractionStartResponse"
}
}
}
}
},
"security": [{ "bearerAuth": [] }]
}
},
"/api/customer-feedback": {
"post": {
"tags": ["고객 피드백"],
"summary": "피드백 생성",
"description": "음식에 대한 피드백과 설문 응답을 생성합니다. 사진 업로드를 위한 S3 presigned URL 생성 API를 먼저 호출해야 합니다.",
"operationId": "createFeedback",
"requestBody": {
"description": "피드백 생성 요청",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FeedbackCreateRequest"
},
"example": {
"storeId": 1,
"foodId": 1,
"surveyId": 1,
"photoS3Keys": ["feedback-photos/customer1/uuid1.jpg"],
"surveyAnswers": [
{
"questionId": 1,
"answerText": "맛있었습니다",
"numericValue": 4.5
}
]
}
}
},
"required": true
},
"responses": {
"200": {
"description": "피드백 생성 성공",
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/FeedbackResponse" },
"example": {
"success": true,
"message": "성공했습니다",
"data": {
"id": 1,
"storeId": 1,
"foodId": 1,
"surveyId": 1,
"photoUrls": ["https://s3.../photo1.jpg"],
"surveyAnswers": [
{
"questionId": 1,
"answerText": "맛있었습니다",
"numericValue": 4.5
}
],
"createdAt": "2024-01-01T10:00:00"
}
}
}
}
},
"401": {
"description": "인증이 필요합니다",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseCustomerFeedbackResponse"
}
}
}
},
"400": {
"description": "잘못된 요청 데이터",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseCustomerFeedbackResponse"
}
}
}
},
"404": {
"description": "매장, 음식 또는 설문을 찾을 수 없습니다",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseCustomerFeedbackResponse"
}
}
}
}
}
}
},
"/api/customer-feedback/presigned-urls": {
"post": {
"tags": ["고객 피드백"],
"summary": "피드백 사진들 Presigned URL 생성",
"description": " 고객이 여러 개의 피드백 사진을 S3에 직접 업로드하기 위한 Presigned URL들을 한 번에 생성합니다.\n\n **클라이언트 처리 순서:**\n 1. 이 API를 호출하여 각 파일별 `presignedUrl`과 `s3Key`를 받습니다.\n 2. 각 `presignedUrl`에 해당하는 파일을 **HTTP PUT** 요청으로 업로드합니다.\n - **주의:** `Content-Type` 헤더에 반드시 실제 파일의 MIME 타입(예: `image/jpeg`)을 포함해야 합니다.\n 3. 모든 S3 업로드가 성공하면, 피드백 생성 API를 호출할 때 모든 `s3Key`를 포함해서 전송합니다.\n\n **사용 예시:**\n - 1개 파일: `[\"photo1.jpg\"]`\n - 여러개 파일: `[\"photo1.jpg\", \"photo2.jpg\", \"photo3.jpg\"]`\n",
"operationId": "generateMultiplePresignedUrls",
"requestBody": {
"description": "피드백 사진 업로드 요청",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FeedbackPhotosUploadRequest"
},
"example": {
"fileNames": ["photo1.jpg", "photo2.jpg", "photo3.jpg"]
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Presigned URL 생성 성공",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FeedbackPhotosPresignedUrlResponse"
},
"example": {
"success": true,
"message": "성공했습니다",
"data": {
"presignedUrls": [
{
"fileName": "photo1.jpg",
"presignedUrl": "https://s3.../presigned-url",
"s3Key": "feedback-photos/customer1/uuid1.jpg"
}
]
}
}
}
}
},
"401": {
"description": "인증이 필요합니다",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseFeedbackPhotosPresignedUrlResponse"
}
}
}
},
"400": {
"description": "잘못된 요청 데이터 (너무 많은 파일 또는 잘못된 파일 확장자)",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseFeedbackPhotosPresignedUrlResponse"
}
}
}
}
}
}
},
"/api/auth/token/exchange": {
"post": {
"tags": ["Token Exchange"],
"summary": "인증 코드로 토큰 교환",
"description": "OAuth2 인증 후 받은 코드로 액세스 토큰과 리프레시 토큰을 받습니다",
"operationId": "exchangeCode",
"requestBody": {
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/CodeExchangeRequest" }
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ApiResponseTokenExchangeResponse"
}
}
}
}
}
}
},
"/api/auth/refresh": {
"post": {
"tags": ["Authentication"],
"operationId": "refresh",
"parameters": [
{
"name": "refreshToken",
"in": "cookie",
"required": true,
"schema": { "type": "string" }
}