sign_in_widget_versions
Creates, updates, deletes, gets or lists a sign_in_widget_versions resource.
Overview
| Name | sign_in_widget_versions |
| Type | Resource |
| Id | okta.brands.sign_in_widget_versions |
Fields
The following fields are returned by SELECT queries:
- list_all_sign_in_widget_versions
Successfully listed the sign-in widget versions.
| Name | Datatype | Description |
|---|
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_all_sign_in_widget_versions | select | subdomain | Lists all sign-in widget versions supported by the current 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.
| 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_all_sign_in_widget_versions
Lists all sign-in widget versions supported by the current org
SELECT
*
FROM okta.brands.sign_in_widget_versions
WHERE subdomain = '{{ subdomain }}' -- required
;