-
Notifications
You must be signed in to change notification settings - Fork 2
1.7. 펀디토 머니 조회
100yeeun edited this page Jan 3, 2020
·
5 revisions
예은
메소드 | 경로 | 설명 |
---|---|---|
GET | /mypage/point | 펀디토 머니 조회 |
Content-Type: application/json
token: "개인 token 값"
조회 등록 성공시
{
"status": 200,
"success": true,
"message": "사용자 조회 성공",
"data": [
{
"point": 2123
}
]
}
잘못된 userIdx
{
"status": 400,
"success": false,
"message": "존재하지 않는 인덱스 값"
}
INTERNAL SERVER ERROR
{
"status" : 500,
"message" : "서버 내부 에러",
"data" : null
}
DB 에러
{
"status" : 600,
"message" : "데이터베이스 에러",
"data" : null
}