POST v1/Authentication/IsStrongPassword

Request Information

URI Parameters

None.

Body Parameters

IsStrongPasswordViewModel
NameDescriptionTypeAdditional information
Password

string

None.

IsStrong

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Password": "sample string 1",
  "IsStrong": true
}

application/xml, text/xml

Sample:
<IsStrongPasswordViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dealerportal.Shared.ViewModels.v1.Authentication">
  <IsStrong>true</IsStrong>
  <Password>sample string 1</Password>
</IsStrongPasswordViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IsStrongPasswordViewModel
NameDescriptionTypeAdditional information
Password

string

None.

IsStrong

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Password": "sample string 1",
  "IsStrong": true
}

application/xml, text/xml

Sample:
<IsStrongPasswordViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dealerportal.Shared.ViewModels.v1.Authentication">
  <IsStrong>true</IsStrong>
  <Password>sample string 1</Password>
</IsStrongPasswordViewModel>