POST
/
v1
/
resetUserPassword
curl --request POST \
  --url https://dashboard.brandblast.ai/api/v1/resetUserPassword \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "user_email": "user@example.com",
  "new_password": "newSecurePassword123"
}'
{
  "message": "Password reset successfully."
}

Authorizations

X-API-Key
string
header
required

Body

application/json
user_email
string
required

Email address of the user whose password is to be reset

new_password
string
required

New password for the user

Response

200
application/json
Password reset successfully
message
string