Authentication

Reset a Password

The request a password reset endpoint sends an email with a link to the admin app which in turn uses this endpoint to allow the user to reset their password.

post/auth/password/reset

Request body

tokenstring required

One-time use JWT token that is used to verify the user.

passwordstring password required

New password for the user.

Example request

{
  "token": "eyJ0eXAiOiJKV1Qi...",
  "password": "password"
}

Changes