Skip to main content

sign_in_page

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

Overview

Namesign_in_page
TypeResource
Idokta.brands.sign_in_page

Fields

The following fields are returned by SELECT queries:

Successfully retrieved the sign-in page.

NameDatatypeDescription
_embeddedobject
_linksobjectSpecifies 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.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_sign_in_pageselectsubdomainRetrieves the sign-in page sub-resources. The expand query parameter specifies which sub-resources to include in the response.
delete_customized_sign_in_pagedeletesubdomainDeletes the customized sign-in page. As a result, the default sign-in page appears in your live environment.

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-in page sub-resources. The expand query parameter specifies which sub-resources to include in the response.

SELECT
_embedded,
_links
FROM okta.brands.sign_in_page
WHERE subdomain = '{{ subdomain }}' -- required
;

DELETE examples

Deletes the customized sign-in page. As a result, the default sign-in page appears in your live environment.

DELETE FROM okta.brands.sign_in_page
WHERE subdomain = '{{ subdomain }}' --required
;