Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

Confirm password reset with token

POST/v1/auth/password/confirm
Request body
requiredapplication/json
emailstringrequired
User email address
min length 1
passwordstringrequired
New password (min 8 characters)
min length 8
tokenstringrequired
Password reset token
min length 1
Responses
200OK
messagestringrequired
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X POST "/v1/auth/password/confirm" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "string",
  "password": "string",
  "token": "string"
}'
Response
{
  "message": "string"
}