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

Path Parameters

client_id
integer
required

Client ID associated with the user account

program_id
integer
required

Program ID associated with the user account

session_id
string
required

Session ID for the process (optional)

Body

application/json
Email of the user for username recovery
email
string
required

Response

200
application/json
Username recovery process response
status
string
Example:

"success"

data
object