Skip to main content

sign_out_page_settings

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

Overview

Namesign_out_page_settings
TypeResource
Idokta.brands.sign_out_page_settings

Fields

The following fields are returned by SELECT queries:

Successfully retrieved the sign-out page settings.

NameDatatypeDescription
typestring
urlstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_sign_out_page_settingsselectsubdomainRetrieves the sign-out page settings
replace_sign_out_page_settingsreplacesubdomain, data__typeReplaces the sign-out page settings

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 sign-out page settings

SELECT
type,
url
FROM okta.brands.sign_out_page_settings
WHERE subdomain = '{{ subdomain }}' -- required
;

REPLACE examples

Replaces the sign-out page settings

REPLACE okta.brands.sign_out_page_settings
SET
data__type = '{{ type }}',
data__url = '{{ url }}'
WHERE
subdomain = '{{ subdomain }}' --required
AND data__type = '{{ type }}' --required
RETURNING
type,
url
;