Skip to main content
Version: 7.2405.x.x LTS

policyDetailLevel

If policyDetailLevel is set, the response can contain the following information:

  • EXCLUDE + LOW:
    • name
    • extId
    • type
    • default
  • MEDIUM: All elements from the LOW detail level plus:
    • description
    • config
  • HIGH: All elements from the MEDIUM detail level plus:
    • ctlCreUid
    • ctlCreDat
    • ctlModUid
    • ctlModDat
    • ctlTcn

Example of a request and response with policyDetailLevel set to MEDIUM:

Request:

<v1:queryPolicies>
<query>
<clientExtId>100</clientExtId>
<detailLevels>
<policyDetailLevel>MEDIUM</policyDetailLevel>
</detailLevels>
<policy>
<extId>100</extId>
</policy>
</query>
</v1:queryPolicies>

Response:

<ns2:queryPoliciesResponse
xmlns:ns2="http://adnovum.ch/nevisidm/ws/services/v1">
<return>
<name>Default password policy</name>
<extId>100</extId>
<type>PASSWORD_POLICY</type>
<default>true</default>
<description>Default password policy</description>
<config>minLength=8&#xd;
maxLength=30&#xd;
maxCtrl=0&#xd;
maxNonGraph=0&#xd;
maxNonAscii=0&#xd;
minNonLetter=1&#xd;
minNonAlnum=1&#xd;
minUpper=1&#xd;
minLower=1&#xd;
tmpLockingThreshold=2&#xd;
tmpLockingDuration=10000&#xd;
maxCredFailureCount=3&#xd;
initialPwchangeRequired=true&#xd;
passwordLifetime=10000000000&#xd;
credentialLifetime=315360000000&#xd;
resetCodeLen0=5&#xd;
resetCodeLen1=10&#xd;
resetCodeEnabled=true&#xd;
maxResetCount=3&#xd;
minHistoryEntries=3&#xd;
minHistoryTime=3600000&#xd;
</config>
</return>
</ns2:queryPoliciesResponse>