Skip to content

Change password

POST
/api/v1/me/password
curl --request POST \
--url http://localhost:3000/api/v1/me/password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "currentPassword": "example", "newPassword": "example" }'
Media type application/json
object
currentPassword
required

Current password

string
newPassword
required

New password

string
Example generated
{
"currentPassword": "example",
"newPassword": "example"
}

Password changed successfully

Invalid current password or weak new password