API ReferenceManagementTenantsPassword Settings
GET
/v1/mgmt/password/settings

Get password settings for a tenant

This endpoint allows you to get the password settings of a given tenant.

See Also

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v1/mgmt/password/settings

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Query Parameters

tenantIdstring

Status codeDescription
200OK
curl -X GET "https://api.descope.com/v1/mgmt/password/settings?tenantId=string"

{
  "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
}

Was this helpful?