Get Logon Settings
GET/api/v32.07/settings/logon
x-prisma-cloud-target-env: {"permission":"authConfiguration"}
Configures the logon settings.
cURL Request
Refer to the following example cURL request that uses basic auth to retrieve all current logon settings.
curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
"https://<CONSOLE>/api/v<VERSION>/settings/logon"
Responses
- 200
- default
LogonSettings are settings associated with the login properties
- application/json
- Schema
- Example (from schema)
Schema
basicAuthDisabled boolean
Indicates whether the user can use basic auth.
includeTLS boolean
IncludeTLS indicates that TLS checks should be included in copy links.
sessionTimeoutSec int64
SessionTimeoutSec defines the session timeout in seconds.
strongPassword boolean
StrongPassword indicates whether strong password enforcement is applied.
useSupportCredentials boolean
UseSupportCredentials indicates whether to include credentials in the URL.
{
"basicAuthDisabled": true,
"includeTLS": true,
"sessionTimeoutSec": 0,
"strongPassword": true,
"useSupportCredentials": true
}
Loading...