POST
/
reset-password
curl --request POST \
  --url https://api.joinworth.com/auth/api/v1/reset-password \
  --header 'Content-Type: application/json' \
  --data '{
  "password": "<string>",
  "reset_token": "<string>"
}'
{
  "status": "success",
  "message": "Password Changed succesfully"
}

Body

application/json

Both password and reset_token are required for password reset.

password
string
required

The new password to set after reset

reset_token
string
required

The token required to validate the password reset request

Response

200
application/json
OK
status
string
Example:

"success"

message
string
Example:

"Password Changed succesfully"