POST
/
frontend
/
reset_password
/
{client_id}
/
{program_id}
/
{session_id}
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"
}

Path Parameters

client_id
integer
required

Client ID for the password reset

program_id
integer
required

Program ID for the password reset

session_id
string
required

Session ID for the password reset (optional)

Body

application/json

Data required for resetting password

The body is of type object.

Response

201
application/json

Password reset successful

The response is of type object.