API Reference/Management/Tenants/Password Settings
GET
/v1/mgmt/password/settings

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Management Key > as bearer

In: header

Query Parameters

tenantIdstring
curl -X GET "https://api.descope.com/v1/mgmt/password/settings?tenantId=string" \
  -H "Authorization: Bearer <token>"

OK

{
  "minLength": 0,
  "lowercase": true,
  "uppercase": true,
  "number": true,
  "nonAlphanumeric": true,
  "expiration": true,
  "expirationWeeks": 0,
  "reuse": true,
  "reuseAmount": 0,
  "lock": true,
  "lockAttempts": 0,
  "tenantId": "string",
  "enabled": true,
  "tempLock": true,
  "tempLockAttempts": 0,
  "tempLockDuration": 0,
  "enablePasswordStrength": true,
  "passwordStrengthScore": 0
}

Was this helpful?