Get SAML Settings of Prisma Cloud Compute
GET/api/v32.07/settings/saml
x-prisma-cloud-target-env: {"permission":"authConfiguration"}
Returns the configured SAML settings that is used to authenticate to the Prisma Cloud Compute console.
cURL Request
Refer to the following example cURL request:
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
https://<CONSOLE>/api/v<VERSION>/settings/saml
Responses
- 200
- default
SamlSettings are the saml connectivity settings
- application/json
- Schema
- Example (from schema)
Schema
AppID is the Azure application ID.
appSecret object
Secret Stores the plain and encrypted version of a value. The plain version is not stored in a database
Specifies an encrypted value of the secret.
Specifies the plain text value of the secret.
Audience specifies the SAML audience used in the verification of the SAML response.
Cert is idp certificate in PEM format.
ConsoleURL is the external Console URL that is used by the IDP for routing the browser after login.
Enabled indicates whether saml settings are enabled.
GroupAttribute is the name of the group attribute.
Issuer is idp issuer id.
ProviderAlias is the provider alias used for display.
SkipAuthnContext indicates whether request authentication contexts should be skipped.
TenantID is the Azure Tenant ID.
Possible values: [okta,gsuite,ping,shibboleth,azure,adfs
]
SamlType represents the type of a SAML configured settings
URL is idp sso url.
{
"appId": "string",
"appSecret": {
"encrypted": "string",
"plain": "string"
},
"audience": "string",
"cert": "string",
"consoleURL": "string",
"enabled": true,
"groupAttribute": "string",
"issuer": "string",
"providerAlias": "string",
"skipAuthnContext": true,
"tenantId": "string",
"type": [
"okta",
"gsuite",
"ping",
"shibboleth",
"azure",
"adfs"
],
"url": "string"
}