supported_security_questions
Creates, updates, deletes, gets or lists a supported_security_questions
resource.
Overview
Name | supported_security_questions |
Type | Resource |
Id | okta.users.supported_security_questions |
Fields
The following fields are returned by SELECT
queries:
- list_supported_security_questions
Name | Datatype | Description |
---|---|---|
answer | string | Answer to the question |
question | string | Unique key for the question (example: disliked_food) |
questionText | string | Human-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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_supported_security_questions | select | subdomain | Lists 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.
Name | Datatype | Description |
---|---|---|
subdomain | string | The 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
- list_supported_security_questions
Lists all available security questions for the specified user
SELECT
answer,
question,
questionText
FROM okta.users.supported_security_questions
WHERE subdomain = '{{ subdomain }}' -- required;