-
Notifications
You must be signed in to change notification settings - Fork 1
뱃지 조회
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" : "어려움"
}
]
}
}