Path Parameters
Client ID associated with the user account
Program ID associated with the user account
Session ID for the process (optional)
Body
application/json
Email of the user for username recovery
Handles the process for users who have forgotten their username
curl --request POST \
--url https://api.helpyousponsor.com/v1/frontend/forgot_username/{client_id}/{program_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com"
}'{
"status": "success",
"data": {
"message": "<string>"
}
}Client ID associated with the user account
Program ID associated with the user account
Session ID for the process (optional)
Email of the user for username recovery
curl --request POST \
--url https://api.helpyousponsor.com/v1/frontend/forgot_username/{client_id}/{program_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com"
}'{
"status": "success",
"data": {
"message": "<string>"
}
}