POST
/
api
/
v1
/
auth
/
updatePassword
Update password
curl --request POST \
  --url https://email-clean.grorapid.com/api/v1/auth/updatePassword \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "9b5282d0f0f04fb3bca5.example",
  "password": "NewSecret123!"
}
'
{
  "message": "Password updated successfully.",
  "status": true,
  "statusCode": 200,
  "result": true
}

Body

application/json
token
string
required
password
string
required

Response

Password updated successfully.

message
string
required
status
boolean
required
statusCode
integer
required
result
boolean
required