Skip to main content

supported_security_questions

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

Overview

Namesupported_security_questions
TypeResource
Idokta.users.supported_security_questions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
answerstringAnswer to the question
questionstringUnique key for the question (example: disliked_food)
questionTextstringHuman-readable text that's displayed to the user (example: What is the food you least liked as a child?)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_supported_security_questionsselectsubdomainLists all available security questions for the specified user

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

Lists all available security questions for the specified user

SELECT
answer,
question,
questionText
FROM okta.users.supported_security_questions
WHERE subdomain = '{{ subdomain }}' -- required;