Skip to content

쿠폰리스트조회

Ji Yeon Kim edited this page Jan 11, 2019 · 3 revisions

쿠폰 리스트 조회

선필

메소드 경로 설명
GET /coupon 해당 유저 쿠폰 리스트 조회

요청 헤더

Content-Type: application/json
Authorization: token

응답 바디

쿠폰 리스트 조회 성공시

{
    "status": 200,
    "message": "쿠폰 리스트 조회 성공",
    "data": [
        {
            "coupon_id": 3,
            "coupon_authentication_number": "1833",
            "coupon_create_date": "2019-01-03T10:06:38.000+0000"
        }, {
            "coupon_id": 3,
            "coupon_authentication_number": "1833",
            "coupon_create_date": "2019-01-03T10:06:38.000+0000"
        }
    ]
}

조회 실패

{
    "status" : 404,
    "message" : "쿠폰 리스트 조회 실패",
    "data" : null
}

인증 실패

{
    "status" : 401,
    "message" : "인증 실패",
    "data" : null
}

DB 에러

{
    "status" : 600,
    "message" : "데이터베이스 에러",
    "data" : null
}

INTERNAL SERVER ERROR

{
    "status" : 500,
    "message" : "서버 내부 에러",
    "data" : null
}
Clone this wiki locally