Aller au contenu

/api/auth/password-reset/confirm

POST
/api/auth/password-reset/confirm
curl --request POST \
--url https://example.com/api/auth/password-reset/confirm \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "token": "example", "newPassword": "example" }'
Media type application/json
object
token
string
nullable
newPassword
string
nullable
Example generated
{
"token": "example",
"newPassword": "example"
}

OK