Handles the password reset process including
curl --request POST \
--url https://api.helpyousponsor.com/v1/frontend/reset_password/{client_id}/{program_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com"
}'
{
"message": "<string>",
"status": "success"
}
Client ID for the password reset
Program ID for the password reset
Session ID for the password reset (optional)
Data required for resetting password
The body is of type object
.
Password reset successful
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/frontend/reset_password/{client_id}/{program_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com"
}'
{
"message": "<string>",
"status": "success"
}