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

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

application/jsonRequired
minLengthinteger
Format: "int32"
lowercaseboolean
uppercaseboolean
numberboolean
nonAlphanumericboolean
expirationboolean
expirationWeeksinteger
Format: "int32"
reuseboolean
reuseAmountinteger
Format: "int32"
lockboolean
lockAttemptsinteger
Format: "int32"
tenantIdstring
enabledboolean
tempLockboolean
tempLockAttemptsinteger
Format: "int32"
tempLockDurationinteger
Format: "int32"
enablePasswordStrengthboolean
passwordStrengthScoreinteger
Format: "int32"
curl -X POST "https://api.descope.com/v1/mgmt/password/settings" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "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
  }'

OK

Was this helpful?