support_settings
Creates, updates, deletes, gets or lists a support_settings resource.
Overview
| Name | support_settings |
| Type | Resource |
| Id | okta.org.support_settings |
Fields
The following fields are returned by SELECT queries:
- get_org_okta_support_settings
| Name | Datatype | Description |
|---|---|---|
_links | object | Specifies link relations (see Web Linking) available for the Okta Support Settings object using the JSON Hypertext Application Language specification |
caseNumber | string | Support case number for the Okta Support access grant |
expiration | string (date-time) | Expiration of Okta Support |
support | string | Status of Okta Support Settings |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_org_okta_support_settings | select | subdomain | Retrieves 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.
| 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_org_okta_support_settings
Retrieves Okta Support Settings for your org
SELECT
_links,
caseNumber,
expiration,
support
FROM okta.org.support_settings
WHERE subdomain = '{{ subdomain }}' -- required
;