POST Keystonelogin/Passwordstrength

Request Information

URI Parameters

None.

Body Parameters

ServiceRequestPasswordCheck
NameDescriptionTypeAdditional information
UserPwd

string

None.

UserName

string

None.

UserFirst

string

None.

UserLast

string

None.

AppCode

globally unique identifier

None.

Request Formats

application/json, text/json, application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PasswordCheckResponse
NameDescriptionTypeAdditional information
Strength

PasswordStrength

None.

CorrectLength

boolean

None.

ContainNumber

boolean

None.

ContainUpperCaseLetter

boolean

None.

ContainLowerCaseLetter

boolean

None.

ContainSpecialCharacter

boolean

None.

DoesNotContainUsername

boolean

None.

DoesNotContainLastname

boolean

None.

DoesNotContainFirstname

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Strength": 0,
  "CorrectLength": true,
  "ContainNumber": true,
  "ContainUpperCaseLetter": true,
  "ContainLowerCaseLetter": true,
  "ContainSpecialCharacter": true,
  "DoesNotContainUsername": true,
  "DoesNotContainLastname": true,
  "DoesNotContainFirstname": true
}

application/xml, text/xml

Sample:
<PasswordCheckResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DCEDLogin.Models">
  <ContainLowerCaseLetter>true</ContainLowerCaseLetter>
  <ContainNumber>true</ContainNumber>
  <ContainSpecialCharacter>true</ContainSpecialCharacter>
  <ContainUpperCaseLetter>true</ContainUpperCaseLetter>
  <CorrectLength>true</CorrectLength>
  <DoesNotContainFirstname>true</DoesNotContainFirstname>
  <DoesNotContainLastname>true</DoesNotContainLastname>
  <DoesNotContainUsername>true</DoesNotContainUsername>
  <Strength>Invalid</Strength>
</PasswordCheckResponse>