-
Notifications
You must be signed in to change notification settings - Fork 1
박지수 Jisu Park edited this page Mar 2, 2020
·
1 revision
[GET] ~/api/v1/asker/mypage/offer/coupons
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
성공
{
"code": "success",
"message": "success",
"data": {
"coupons": [
{
"title": "이벤트",
"name": "1000원 할인 쿠폰",
"from_date": "20.03.02",
"to_date": "20.03.02"
},
{
"title": "이벤트",
"name": "3000원 할인 쿠폰",
"from_date": "20.03.02",
"to_date": "20.03.02"
}
]
}
}
쿠폰이 없을 경우
{
"code": "success",
"message": "success",
"data": {
"coupons": []
}
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}