Skip to main content

SetPassword

Change your password after logging in.

Description

Change the password of the logged-in user.

Method

PUT

Request URL Format


/api/v0/users/password

```text
## Payload
```JSON
{
"confirm_password":"必須 新しいパスワードの確認 //The input must be the same as new_password.",
"new_password":"必須 新しいパスワード",
"old_password":"必須 今まで使用していたパスワード"
}

Request URL Sample

PUT https://api.xxx.com/api/v0/users/password

Response Sample

{
"error": null //Whether there is an error or not
}