Reference / Dashboard

set a new password from a reset token, revoking all of the member's sessions.

POST /v1/dashboard/password-reset/verify
End-user session operationId: 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_password string required
  • token string 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 request
POST https://api.identrahq.com/v1/dashboard/password-reset/verify

Request body

application/json