Forgot Password
Bulk Imports
Customer Users
Business
Business Details
Forgot Password
Forgot Password Init
Allows an admin to request a password reset link via email.
POST
/
forgot-password
Copy
curl --request POST \
--url https://api.joinworth.com/auth/api/v1/forgot-password \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com"
}'
Copy
{
"status": "success",
"message": "A link to reset your password has been sent to the registered email"
}
Body
application/json
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://api.joinworth.com/auth/api/v1/forgot-password \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com"
}'
Copy
{
"status": "success",
"message": "A link to reset your password has been sent to the registered email"
}
Assistant
Responses are generated using AI and may contain mistakes.