Skip to main content

admin_notifications

Creates, updates, deletes, gets or lists an admin_notifications resource.

Overview

Nameadmin_notifications
TypeResource
Idokta.rate_limit_settings.admin_notifications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
notificationsEnabledboolean

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_rate_limit_settings_admin_notificationsselectsubdomainRetrieves the currently configured Rate Limit Admin Notification Settings
replace_rate_limit_settings_admin_notificationsreplacesubdomain, data__notificationsEnabledReplaces the Rate Limit Admin Notification Settings and returns the configured properties

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
subdomainstringThe domain of your organization. This can be a provided subdomain of an official okta domain (okta.com, oktapreview.com, etc) or one of your configured custom domains. (default: my-org)

SELECT examples

Retrieves the currently configured Rate Limit Admin Notification Settings

SELECT
notificationsEnabled
FROM okta.rate_limit_settings.admin_notifications
WHERE subdomain = '{{ subdomain }}' -- required;

REPLACE examples

Replaces the Rate Limit Admin Notification Settings and returns the configured properties

REPLACE okta.rate_limit_settings.admin_notifications
SET
data__notificationsEnabled = {{ notificationsEnabled }}
WHERE
subdomain = '{{ subdomain }}' --required
AND data__notificationsEnabled = {{ notificationsEnabled }} --required
RETURNING
notificationsEnabled;