-
Notifications
You must be signed in to change notification settings - Fork 0
[PUT] 비밀번호 재설정
MoonAyoung edited this page Jun 6, 2021
·
4 revisions
메소드 | 경로 | 설명 |
---|---|---|
PUT | /api/v2/users/password | 비밀번호 재설정을 진행합니다. |
![](https://user-images.githubusercontent.com/69340410/120214884-0ae77a00-c270-11eb-82a3-2e9a57fc086c.png)
{
"Content-Type": "application/json",
"accessToken": "[토큰]"
}
{
"password": "[변경할 패스워드]"
}
{
"status": 200,
"message": "비밀번호 재설정 성공입니다.",
"data": null
}
- 잘못된 토큰
{
"message": "JWT가 없거나 잘못된 값 입니다",
"status": 401,
"errors": [],
"code": "J001"
}
- 서버 에러
{
"message": "Server Error",
"status": 500,
"errors": [],
"code": "C004"
}