POST api/Member/ForgotUserName

Request Information

URI Parameters

None.

Body Parameters

ForgotUsernameRequestModel
NameDescriptionTypeAdditional information
MemberId

string

None.

DateOfBirth

string

None.

LastName

string

None.

Email

string

None.

Request Formats

application/json, text/json

Sample:
{
  "MemberId": "sample string 1",
  "DateOfBirth": "sample string 2",
  "LastName": "sample string 3",
  "Email": "sample string 4"
}

application/xml, text/xml

Sample:
<ForgotUsernameRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.MPGBGIntegration.API.Models">
  <DateOfBirth>sample string 2</DateOfBirth>
  <Email>sample string 4</Email>
  <LastName>sample string 3</LastName>
  <MemberId>sample string 1</MemberId>
</ForgotUsernameRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>