Skip to main content
POST
/
auth
/
forgot-password
Forgot password
curl --request POST \
  --url https://api.identity.fabric.zone/ums/v2/auth/forgot-password \
  --header 'Content-Type: application/json' \
  --data '{
  "loginId": "johndoe@fabric.inc"
}'
{
  "code": "FORGOT_PASSWORD_INITIATED",
  "message": "If user was found a reset link will be sent to the provided email"
}

Body

application/json
loginId
string

Login id of the user whose ID should be reset

Response

Successful response when the user reset link is sent to the registered email address.

code
string
message
string
I