Forgot User Name

A forgotten user name can be retrieved by using the /unauthservice/forgotusername with a POST. The user submits an email address for receiving of the user name. OIG validates the email address. If the email address is valid, then OIG mails the user name to the address.

cURL Example

POST {{url}}/iam/governance/selfservice/api/v1/unauthservice/forgotusername
curl  -H "Content-Type: application/json"  -H "X-Requested-By: <anyvalue>"  -X POST  -d @post.json https://pseudo.com/iam/governance/selfservice/api/v1/unauthservice/forgotusername

Example of POST Request Body

{
  "email": "sample@sample.com"
}

Example of POST Response Body

{
  "status":"Email sent to registered emailID"
}