set a new password from a reset token, revoking all of the member's sessions.
POST
End-user session operationId: password_reset_verify/v1/dashboard/password-reset/verify Authorization
Called from the browser with the publishable application id (x-application-id); the access token lives in memory.
Request body · required
new_passwordstring requiredtokenstring required
Responses
200 Password reset; all sessions revoked
{
"data": {},
"error": {
"code": "string",
"message": "string"
},
"meta": {
"timestamp": "string"
},
"success": false
} 422 Invalid/expired token or weak password
Request
curl -X POST "https://api.identrahq.com/v1/dashboard/password-reset/verify" \
-H "Content-Type: application/json" \
-d '{
"new_password": "string",
"token": "string"
}'Try it
live requestPOST
https://api.identrahq.com/v1/dashboard/password-reset/verify