-
Notifications
You must be signed in to change notification settings - Fork 1
비밀번호변경
Chaewon Kim edited this page Jan 6, 2021
·
5 revisions
메소드 | 경로 | 설명 |
---|---|---|
PUT | /users/:id/password | 비밀번호 변경 |
Content-Type: application/json
{
"newPassword" : "새로운 비밀번호"
}
{
"message": "비밀번호 수정 성공",
"data": {
"id": 1,
"email": "test_email_0",
"name": "test_name_0",
"password": "",
"passwordSalt": "",
"isAlarmSet": true,
"alarmTime": "06:00:00",
"tempPassword": "",
"tempPasswordCreatedAt": null,
"tempPasswordIssueCount": 0,
"createdAt": "2021-01-06T16:50:51.000Z",
"updatedAt": "2021-01-06T13:18:36.000Z"
}
}
{
"message": "필요한 값이 없습니다"
}
{
"message": "존재하지 않는 회원"
}
{
"message": "비밀번호 수정 실패"
}