Handles the process for users who have forgotten their username by initiating a new session.
curl --request GET \
--url https://api.helpyousponsor.com/v1/frontend/forgot_username/{client_id}/{program_id}/{session_id}
{
"status": "success",
"data": {
"session_id": "<string>",
"client_id": 123,
"program_id": 123
}
}
Client ID associated with the user account
Program ID associated with the user account
Session ID for the process (optional)
Username recovery initiated
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/frontend/forgot_username/{client_id}/{program_id}/{session_id}
{
"status": "success",
"data": {
"session_id": "<string>",
"client_id": 123,
"program_id": 123
}
}