[GET] 스토어화면 쇼핑몰 - SOPT-ZigZag/SERVER_ZIGZAG GitHub Wiki
[GET] 스토어화면 쇼핑몰 - /api/store
URL
18.217.241.233:5000/api/store
PATH
/store
요청 헤더
Content-Type: application/json
token: token
요청 바디
응답 바디
key |
설명 |
타입 |
비고 |
_id |
이미지 별 id 값 |
string |
|
img |
쇼핑몰 이미지 |
string |
S3 링크 |
store_idx |
쇼핑몰 이미지 인덱스 값 |
number |
랜덤 요청을 위함 |
brand |
쇼핑몰명 |
string |
|
style |
쇼핑몰 스타일 |
string |
|
coupon |
쿠폰값 |
number |
|
bookmark |
즐겨찾기 |
boolean |
|
z_only |
ZIGZAG 단독 쇼핑몰 여부 |
boolean |
|
follower |
팔로워 수 |
number |
|
성공
{
"status": 200,
"success": true,
"message": "쇼핑몰 API 불러오기 성공",
"data": {
"store": [
{
"_id": "60b1f18c28cf3c2102bbc2b3",
"img": "https://soptzigzag.s3.us-east-2.amazonaws.com/store_2.png",
"store_idx": 1,
"brand": "양상추",
"style": "심플베이직, 러블리",
"coupon": 2000,
"bookmark": "false",
"z_only": false,
"follower": 42108
}
]
}
}
실패
{
"status": 500,
"success": false,
"message": "Server Error"
}