POST api/Customer/SetLazyPassword

Request Information

URI Parameters

None.

Body Parameters

SetLazyPasswordRequest
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

NewPassword

string

None.

Email

string

None.

Source

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "7d4a3ccc-4958-4462-8abd-c144ecf592ff",
  "NewPassword": "sample string 2",
  "Email": "sample string 3",
  "Source": "sample string 4"
}

application/xml, text/xml

Sample:
<SetLazyPasswordRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <Email>sample string 3</Email>
  <NewPassword>sample string 2</NewPassword>
  <Source>sample string 4</Source>
  <UserId>7d4a3ccc-4958-4462-8abd-c144ecf592ff</UserId>
</SetLazyPasswordRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SetLazyPasswordResponse
NameDescriptionTypeAdditional information
IsValidLogOnName

boolean

None.

EmailChanged

boolean

None.

IsPasswordSameWithEmail

boolean

None.

Success

boolean

None.

UserName

string

None.

EmailAddress

string

None.

GsmNumber

string

None.

InvalidPassword

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "IsValidLogOnName": true,
  "EmailChanged": true,
  "IsPasswordSameWithEmail": true,
  "Success": true,
  "UserName": "sample string 5",
  "EmailAddress": "sample string 6",
  "GsmNumber": "sample string 7",
  "InvalidPassword": true
}

application/xml, text/xml

Sample:
<SetLazyPasswordResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
  <EmailAddress>sample string 6</EmailAddress>
  <EmailChanged>true</EmailChanged>
  <GsmNumber>sample string 7</GsmNumber>
  <InvalidPassword>true</InvalidPassword>
  <IsPasswordSameWithEmail>true</IsPasswordSameWithEmail>
  <IsValidLogOnName>true</IsValidLogOnName>
  <Success>true</Success>
  <UserName>sample string 5</UserName>
</SetLazyPasswordResponse>