Skip to main content

okta_support

Creates, updates, deletes, gets or lists an okta_support resource.

Overview

Nameokta_support
TypeResource
Idokta.org.okta_support

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
grant_okta_supportinsertsubdomainGrants Okta Support temporary access to your org as an administrator for eight hours

> Note: This resource is deprecated. Use the Update an Okta Support case resource to grant Okta Support access for a support case.
> For the corresponding Okta Admin Console feature, see Give access to Okta Support.
revoke_okta_supportdeletesubdomainRevokes Okta Support access to your org

> Note: This resource is deprecated. Use the Update an Okta Support case resource to revoke Okta Support access for a support case.
> For the corresponding Okta Admin Console feature, see Give access to Okta Support.
extend_okta_supportexecsubdomainExtends the length of time that Okta Support can access your org by 24 hours. This means that 24 hours are added to the remaining access time.

> Note: This resource is deprecated. Use the Update an Okta Support case resource to extend Okta Support access for a support case.
> For the corresponding Okta Admin Console feature, see Give access to Okta Support.

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)

INSERT examples

Grants Okta Support temporary access to your org as an administrator for eight hours

> Note: This resource is deprecated. Use the Update an Okta Support case resource to grant Okta Support access for a support case.
> For the corresponding Okta Admin Console feature, see Give access to Okta Support.

INSERT INTO okta.org.okta_support (
subdomain
)
SELECT
'{{ subdomain }}'
;

DELETE examples

Revokes Okta Support access to your org

> Note: This resource is deprecated. Use the Update an Okta Support case resource to revoke Okta Support access for a support case.
> For the corresponding Okta Admin Console feature, see Give access to Okta Support.

DELETE FROM okta.org.okta_support
WHERE subdomain = '{{ subdomain }}' --required
;

Lifecycle Methods

Extends the length of time that Okta Support can access your org by 24 hours. This means that 24 hours are added to the remaining access time.

> Note: This resource is deprecated. Use the Update an Okta Support case resource to extend Okta Support access for a support case.
> For the corresponding Okta Admin Console feature, see Give access to Okta Support.

EXEC okta.org.okta_support.extend_okta_support 
@subdomain='{{ subdomain }}' --required
;