well_known_uris
Creates, updates, deletes, gets or lists a well_known_uris
resource.
Overview
Name | well_known_uris |
Type | Resource |
Id | okta.brands.well_known_uris |
Fields
The following fields are returned by SELECT
queries:
- get_all_well_known_uris
- get_root_brand_well_known_uri
Successfully retrieved all the well-known URIs
Name | Datatype | Description |
---|---|---|
_embedded | object | |
_links | object | Specifies 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. |
Successfully retrieved the well-known URI
Name | Datatype | Description |
---|---|---|
_links | object | Specifies 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. |
representation | object | The well-known URI content in JSON format |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_all_well_known_uris | select | subdomain | Retrieves the content from each of the well-known URIs for a specified brand | |
get_root_brand_well_known_uri | select | subdomain | Retrieves the well-known URI of a specific brand and well-known URI path |
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
- get_all_well_known_uris
- get_root_brand_well_known_uri
Retrieves the content from each of the well-known URIs for a specified brand
SELECT
_embedded,
_links
FROM okta.brands.well_known_uris
WHERE subdomain = '{{ subdomain }}' -- required;
Retrieves the well-known URI of a specific brand and well-known URI path
SELECT
_links,
representation
FROM okta.brands.well_known_uris
WHERE subdomain = '{{ subdomain }}' -- required;