Skip to main content
POST
/
admin
/
users
/
reset-password
Send password reset email to user
curl --request POST \
  --url https://nimbussuite.com/api/v1/admin/users/reset-password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "userId": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
userId
string
required

Response

Password reset email sent successfully

message
string