Skip to main content

brand_well_known_uris

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

Overview

Namebrand_well_known_uris
TypeResource
Idokta.brands.brand_well_known_uris

Fields

The following fields are returned by SELECT queries:

Successfully retrieved the customized well-known URI content

NameDatatypeDescription
_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.
representationobjectThe well-known URI content in JSON format

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_brand_well_known_uriselectsubdomainRetrieves the customized content of a well-known URI for a specific brand and well-known URI path
replace_brand_well_known_urireplacesubdomain, data__representationReplaces the content of a customized well-known URI that you specify.

There are endpoint-specific format requirements when you update the content of a customized well-known URI. See Customize associated domains.

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 customized content of a well-known URI for a specific brand and well-known URI path

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

REPLACE examples

Replaces the content of a customized well-known URI that you specify.

There are endpoint-specific format requirements when you update the content of a customized well-known URI. See Customize associated domains.

REPLACE okta.brands.brand_well_known_uris
SET
data__representation = '{{ representation }}'
WHERE
subdomain = '{{ subdomain }}' --required
AND data__representation = '{{ representation }}' --required
RETURNING
_links,
representation
;