Skip to main content
POST
/
reset-password
Send Admin Password Reset 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"
}

Authorizations

Authorization
string
header
required

The 'Bearer' token can be obtained from the token management interface or via the login endpoint using your admin user credentials.

Body

application/json

Request body for password reset email request

email
string

Response

Successfully sent password reset email.

message
string