Skip to main content
POST
/
api
/
v1
/
users
/
authorization
/
reset-password
Reset Password
curl --request POST \
  --url http://localhost:8000/api/v1/users/authorization/reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "new_password": "<string>",
  "new_password_confirm": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Body

application/json

Schema for password reset confirmation.

token
string
required
new_password
string
required
new_password_confirm
string
required

Response

Successful Response