-
Notifications
You must be signed in to change notification settings - Fork 3
[GET] 비밀번호 찾기 ( 서영 )
0standing2 edited this page Aug 10, 2021
·
1 revision
서영
메소드 경로 짧은 설명 GET /auth/searchPw 비밀번호 찾기
{baseURL}/auth/searchPw
key | 설명 | 타입 | 비고 |
---|---|---|---|
id | 아이디 | String | |
name | 이름 | String | |
newPw | 새 비밀번호 | String |
{
"result": true,
"message": "비밀번호 변경 완료"
}
- 존재하지 않는 회원일 경우
{
"result": false,
"message": "존재하지 않는 회원입니다."
}
- 서버 오류 (비밀번호 변경 오류)
{
"result": false,
"message": "비밀번호 변경 오류입니다."
}