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>"
}
]
}Reset the password using the reset token.
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>"
}
]
}