Authorizations
Body
application/json
Initiate password reset flow by sending reset link to user’s email address.
curl --request POST \
--url https://{deploymentHost}/auth/forgot-password \
--header 'Content-Type: application/json' \
--data '{
"email": "user@example.com"
}'{
"status": 200,
"message": "",
"data": {
"message": "If an account with this email exists, a password reset link has been sent."
},
"session": {
"signin_attempts": [],
"signins": [],
"signup_attempts": [],
"active_signin": null
},
"errors": []
}curl --request POST \
--url https://{deploymentHost}/auth/forgot-password \
--header 'Content-Type: application/json' \
--data '{
"email": "user@example.com"
}'{
"status": 200,
"message": "",
"data": {
"message": "If an account with this email exists, a password reset link has been sent."
},
"session": {
"signin_attempts": [],
"signins": [],
"signup_attempts": [],
"active_signin": null
},
"errors": []
}