Change password

Set password

Set a new password for the current user.

post

/me/password

Authorizations
Body
currentPasswordstring · password · min: 8 · max: 64required

The current password as an extra precaution.

newPasswordstring · password · min: 8 · max: 64required

The new password to set.

Responses
curl -L \
  --request POST \
  --url '/me/password' \
  --header 'Authorization: Bearer jwt' \
  --header 'Content-Type: application/json' \
  --data '{"currentPassword":"super-secret","newPassword":"super-secret"}'

No body

Last updated

Was this helpful?