POST api/account/resend-confirmation-email

This method will resend confirmation e-mail to a new user if he misplaced the original e-mail he received during sign up.

Request Information

URI Parameters

None.

Body Parameters

Username

string

Request Formats

application/json, text/json, text/html

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'String'.

Response Information

Resource Description

Ok

UserMinProfile
NameDescriptionTypeAdditional information
UserId

integer

None.

UserName

string

None.

FirstName

string

None.

LastName

string

None.

EmailConfirmed

boolean

None.

LockoutEnabled

boolean

None.

Avatar

string

None.

AccountVerified

boolean

None.

PasswordSet

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "userId": 1,
  "userName": "sample string 2",
  "firstName": "sample string 3",
  "lastName": "sample string 4",
  "emailConfirmed": true,
  "lockoutEnabled": true,
  "avatar": "sample string 7",
  "accountVerified": true,
  "passwordSet": true
}

text/html

Sample:
{"userId":1,"userName":"sample string 2","firstName":"sample string 3","lastName":"sample string 4","emailConfirmed":true,"lockoutEnabled":true,"avatar":"sample string 7","accountVerified":true,"passwordSet":true}

application/xml, text/xml

Sample:
<UserMinProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos">
  <AccountVerified>true</AccountVerified>
  <Avatar>sample string 7</Avatar>
  <EmailConfirmed>true</EmailConfirmed>
  <FirstName>sample string 3</FirstName>
  <LastName>sample string 4</LastName>
  <LockoutEnabled>true</LockoutEnabled>
  <PasswordSet>true</PasswordSet>
  <UserId>1</UserId>
  <UserName>sample string 2</UserName>
</UserMinProfile>