-
Notifications
You must be signed in to change notification settings - Fork 3
모든 기록 조회
famer9716 edited this page Jul 17, 2020
·
8 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /record/all | 모든 기록 조회 |
{
"Content-Type" : "application/json",
"token" : "발급받은 토큰"
}
👍 success
"status": 200,
"success": true,
"message": "RECORD_ALL_SUCCESS 모든 기록 조회 성공!! ",
"result": [
{
"date": "2020-07-10",
"distance": 9126,
"time": "00:30:00",
"run_idx": 89,
"result": 1,
"game_idx": 12
},
{
"date": "2020-07-10",
"distance": 2666,
"time": "01:00:00",
"run_idx": 111,
"result": 1,
"game_idx": 22
},
{
"date": "2020-07-10",
"distance": 6555,
"time": "01:00:00",
"run_idx": 131,
"result": 1,
"game_idx": 32
}
]
}
👎 fail
{
"status": 200,
"success": true,
"message": "조회 성공 BUT 데이터는 없습니다.",
"result": {}
}