-
Notifications
You must be signed in to change notification settings - Fork 2
1.5. 펀디토 머니 충전
100yeeun edited this page Jan 3, 2020
·
7 revisions
예은
메소드 | 경로 | 설명 |
---|---|---|
PUT | /mypage/point | 펀디토 머니 충전 |
Content-Type: application/json
token: "개인 token 값"
{
"funditoMoney" : 2000,
"payPassword" : "200000"
}
펀디토 머니 충전 성공시
{
"status": 200,
"success": true,
"message": "사용자 수정 성공",
"data": {
"fieldCount": 0,
"affectedRows": 1,
"insertId": 0,
"serverStatus": 2,
"warningCount": 0,
"message": "(Rows matched: 1 Changed: 1 Warnings: 0",
"protocol41": true,
"changedRows": 1
}
}
Response Body에 필요한 값이 없을 때
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
잘못된 회원 idx
{
"status": 400,
"success": false,
"message": "해당하지 않는 userIdx값입니다."
}
비밀번호 인증 실패
{
"status": 401,
"success": true,
"message": "비밀번호가 일치하지 않습니다"
}
INTERNAL SERVER ERROR
{
"status" : 500,
"message" : "서버 내부 에러",
"data" : null
}
DB 에러
{
"status" : 600,
"message" : "데이터베이스 에러",
"data" : null
}