GET api/PasswordPolicy?locationId={locationId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
locationId

integer

Required

Body Parameters

None.

Response Information

Resource Description

PasswordPolicy
NameDescriptionTypeAdditional information
alphaRequired

boolean

None.

specialCharacterRequired

boolean

None.

minimumLength

integer

None.

daysBeforeReset

integer

None.

maxInvalidAttempts

integer

None.

maxDaysInactive

integer

None.

numberOfUniquePasswords

integer

None.

resetOnInitialLogon

boolean

None.

inactiveTimeLimit

integer

None.

enabled

boolean

None.

id

integer

None.

name

string

None.

displayName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "alphaRequired": true,
  "specialCharacterRequired": true,
  "minimumLength": 3,
  "daysBeforeReset": 4,
  "maxInvalidAttempts": 5,
  "maxDaysInactive": 6,
  "numberOfUniquePasswords": 7,
  "resetOnInitialLogon": true,
  "inactiveTimeLimit": 9,
  "enabled": true,
  "id": 11,
  "name": "sample string 12",
  "displayName": "sample string 13"
}

application/xml, text/xml

Sample:
<PasswordPolicy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models.MIMOCore">
  <displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 13</displayName>
  <enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
  <id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">11</id>
  <name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 12</name>
  <alphaRequired>true</alphaRequired>
  <daysBeforeReset>4</daysBeforeReset>
  <inactiveTimeLimit>9</inactiveTimeLimit>
  <maxDaysInactive>6</maxDaysInactive>
  <maxInvalidAttempts>5</maxInvalidAttempts>
  <minimumLength>3</minimumLength>
  <numberOfUniquePasswords>7</numberOfUniquePasswords>
  <resetOnInitialLogon>true</resetOnInitialLogon>
  <specialCharacterRequired>true</specialCharacterRequired>
</PasswordPolicy>