curl --request POST \
--url https://api.nuwebgroup.com/v1/reset-password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]"
}
'{
"message": "success"
}Sends a password reset email for the specified admin email.
curl --request POST \
--url https://api.nuwebgroup.com/v1/reset-password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]"
}
'{
"message": "success"
}The 'Bearer' token can be obtained from the token management interface or via the login endpoint using your admin user credentials.
Request body for password reset email request
Successfully sent password reset email.