begin a dashboard password reset. Always returns 200 (no account enumeration); emails a reset link if the address maps to a member.
POST
End-user session operationId: password_reset_start/v1/dashboard/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
emailstring 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 requestPOST
https://api.identrahq.com/v1/dashboard/password-reset/start