POST
/
forgot-password
curl --request POST \
  --url https://api.joinworth.com/auth/api/v1/forgot-password \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com"
}'
{
  "status": "success",
  "message": "A link to reset your password has been sent to the registered email"
}

Body

application/json
email
string
required

User's email address

Response

200
application/json
OK
status
string
Example:

"success"

message
string
Example:

"A link to reset your password has been sent to the registered email"