Skip to main content

default_sign_in_page

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

Overview

Namedefault_sign_in_page
TypeResource
Idokta.brands.default_sign_in_page

Fields

The following fields are returned by SELECT queries:

Successfully retrieved the default sign-in page.

NameDatatypeDescription
contentSecurityPolicySettingobject
pageContentstringThe HTML for the page
widgetCustomizationsobject
widgetVersionstringThe version specified as a Semantic Version. (pattern: ^(0|[1-9]\d*).(0|[1-9]\d*).(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-])(?:.(?:0|[1-9]\d|\d*[a-zA-Z-][0-9a-zA-Z-]))))?(?:+([0-9a-zA-Z-]+(?:.[0-9a-zA-Z-]+)*))?$)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_default_sign_in_pageselectsubdomainRetrieves the default sign-in page. The default sign-in page appears when no customized sign-in page exists.

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 default sign-in page. The default sign-in page appears when no customized sign-in page exists.

SELECT
contentSecurityPolicySetting,
pageContent,
widgetCustomizations,
widgetVersion
FROM okta.brands.default_sign_in_page
WHERE subdomain = '{{ subdomain }}' -- required
;