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
The body is of type object
.
Username recovery process response
The response is of type object
.
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>"
}
}