authenticator_methods
Creates, updates, deletes, gets or lists an authenticator_methods resource.
Overview
| Name | authenticator_methods |
| Type | Resource |
| Id | okta.authenticators.authenticator_methods |
Fields
The following fields are returned by SELECT queries:
- list_authenticator_methods
- get_authenticator_method
| Name | Datatype | Description |
|---|---|---|
_links | object | Specifies link relations (see Web Linking) available using the JSON Hypertext Application Language specification. This object is used for dynamic discovery of related resources and lifecycle operations. |
status | string | The status of the authenticator method |
type | string | The type of authenticator method |
| Name | Datatype | Description |
|---|---|---|
_links | object | Specifies link relations (see Web Linking) available using the JSON Hypertext Application Language specification. This object is used for dynamic discovery of related resources and lifecycle operations. |
status | string | The status of the authenticator method |
type | string | The type of authenticator method |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_authenticator_methods | select | subdomain | Lists all methods of an authenticator identified by authenticatorId | |
get_authenticator_method | select | subdomain | Retrieves a method identified by methodType of an authenticator identified by authenticatorId | |
replace_authenticator_method | replace | subdomain | Replaces a method of methodType for an authenticator identified by authenticatorId | |
activate_authenticator_method | exec | subdomain | Activates a method for an authenticator identified by authenticatorId and methodType | |
deactivate_authenticator_method | exec | subdomain | Deactivates a method for an authenticator identified by authenticatorId and methodType |
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_authenticator_methods
- get_authenticator_method
Lists all methods of an authenticator identified by authenticatorId
SELECT
_links,
status,
type
FROM okta.authenticators.authenticator_methods
WHERE subdomain = '{{ subdomain }}' -- required
;
Retrieves a method identified by methodType of an authenticator identified by authenticatorId
SELECT
_links,
status,
type
FROM okta.authenticators.authenticator_methods
WHERE subdomain = '{{ subdomain }}' -- required
;
REPLACE examples
- replace_authenticator_method
Replaces a method of methodType for an authenticator identified by authenticatorId
REPLACE okta.authenticators.authenticator_methods
SET
data__status = '{{ status }}',
data__type = '{{ type }}'
WHERE
subdomain = '{{ subdomain }}' --required
RETURNING
_links,
status,
type
;
Lifecycle Methods
- activate_authenticator_method
- deactivate_authenticator_method
Activates a method for an authenticator identified by authenticatorId and methodType
EXEC okta.authenticators.authenticator_methods.activate_authenticator_method
@subdomain='{{ subdomain }}' --required
;
Deactivates a method for an authenticator identified by authenticatorId and methodType
EXEC okta.authenticators.authenticator_methods.deactivate_authenticator_method
@subdomain='{{ subdomain }}' --required
;