Skip to main content
POST
/
cabinet
/
auth
/
password
/
reset
Reset Password
curl --request POST \
  --url http://localhost:8080/cabinet/auth/password/reset \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "password": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Body

application/json

Request to reset password with token.

token
string
required

Password reset token

password
string
required

New password (min 8 chars)

Required string length: 8 - 128

Response

Successful Response