Reference / Dashboard

begin a dashboard password reset. Always returns 200 (no account enumeration); emails a reset link if the address maps to a member.

POST /v1/dashboard/password-reset/start
End-user session operationId: password_reset_start

Authorization

Called from the browser with the publishable application id (x-application-id); the access token lives in memory.

Request body · required

  • email string required

Responses

200 Reset email sent if the account exists
{
  "data": {},
  "error": {
    "code": "string",
    "message": "string"
  },
  "meta": {
    "timestamp": "string"
  },
  "success": false
}

Request

curl -X POST "https://api.identrahq.com/v1/dashboard/password-reset/start" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "string"
}'

Try it

live request
POST https://api.identrahq.com/v1/dashboard/password-reset/start

Request body

application/json