Skip to main content

support_settings

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

Overview

Namesupport_settings
TypeResource
Idokta.org.support_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
_linksobjectSpecifies link relations (see Web Linking) available for the Okta Support Settings object using the JSON Hypertext Application Language specification
caseNumberstringSupport case number for the Okta Support access grant
expirationstring (date-time)Expiration of Okta Support
supportstringStatus of Okta Support Settings

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_org_okta_support_settingsselectsubdomainRetrieves Okta Support Settings for your org

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 Okta Support Settings for your org

SELECT
_links,
caseNumber,
expiration,
support
FROM okta.org.support_settings
WHERE subdomain = '{{ subdomain }}' -- required
;