Skip to main content

mfa_challenge_org_setting

Creates, updates, deletes, gets or lists a mfa_challenge_org_setting resource.

Overview

Namemfa_challenge_org_setting
TypeResource
Idokta.device_access.mfa_challenge_org_setting

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
desktopMFAEnforceNumberMatchingChallengeEnabledbooleanIndicates whether or not the Desktop MFA Enforce Number Matching Challenge push notifications feature is enabled

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_desktop_mfaenforce_number_matching_challenge_org_settingselectsubdomainRetrieves the status of the Desktop MFA Enforce Number Matching Challenge push notifications feature. That is, whether or not the feature is enabled for your org.
replace_desktop_mfaenforce_number_matching_challenge_org_settingreplacesubdomainReplaces the status of the Desktop MFA Enforce Number Matching Challenge push notifications feature. That is, whether or not the feature is enabled for your org.

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 status of the Desktop MFA Enforce Number Matching Challenge push notifications feature. That is, whether or not the feature is enabled for your org.

SELECT
desktopMFAEnforceNumberMatchingChallengeEnabled
FROM okta.device_access.mfa_challenge_org_setting
WHERE subdomain = '{{ subdomain }}' -- required;

REPLACE examples

Replaces the status of the Desktop MFA Enforce Number Matching Challenge push notifications feature. That is, whether or not the feature is enabled for your org.

REPLACE okta.device_access.mfa_challenge_org_setting
SET
data__desktopMFAEnforceNumberMatchingChallengeEnabled = {{ desktopMFAEnforceNumberMatchingChallengeEnabled }}
WHERE
subdomain = '{{ subdomain }}' --required
RETURNING
desktopMFAEnforceNumberMatchingChallengeEnabled;