API ReferenceManagementTenantsSession Settings
GET
/v1/mgmt/tenant/settings

Get session settings for a tenant

This endpoint allows you to get the session 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/tenant/settings

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Query Parameters

idstring

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

{
  "domains": [
    "string"
  ],
  "selfProvisioningDomains": [
    "string"
  ],
  "authType": "string",
  "enabled": true,
  "refreshTokenExpiration": 0,
  "refreshTokenExpirationUnit": "string",
  "sessionTokenExpiration": 0,
  "sessionTokenExpirationUnit": "string",
  "stepupTokenExpiration": 0,
  "stepupTokenExpirationUnit": "string",
  "enableInactivity": true,
  "inactivityTime": 0,
  "inactivityTimeUnit": "string",
  "JITDisabled": true
}

Was this helpful?