Skip to content

뱃지 조회

sovovy edited this page Sep 29, 2019 · 2 revisions

뱃지 조회

Method URL Description
GET /user/badge 뱃지 조회

요청 헤더

Content-Type : application/json

Authorization : [token값]

응답 성공

// status : 200
{
    "message": "Success",
    "data": {
        "count": 3,  // 받은 뱃지 개수
        "total": 13, // 전체 코스 개수
        "badge":[
            {
                "badge_idx" : 1,
                "course_idx" : 3,
                "course_name" : "산으로 코스",
                "date" : "2019-07-27 06:36:21",
                "degree" : "쉬움"
            },
            {
                "badge_idx" : 4,
                "course_idx" : 1,
                "course_name" : "둘이서 코스",
                "date" : "2019-07-27 06:36:21"
                "degree" : "어려움"
            }
        ]
    }
}
Clone this wiki locally