Skip to main content

support_cases

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

Overview

Namesupport_cases
TypeResource
Idokta.org.support_cases

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
supportCasesarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_okta_support_casesselectsubdomainLists all Okta Support cases that the requesting principal has permission to view
update_okta_support_caseupdatesubdomainUpdates access to the org for an Okta Support case:

* You can enable, disable, or extend access to your org for an Okta Support case.

* You can approve Okta Support access to your org for self-assigned cases. A self-assigned case is created and assigned by the same Okta Support user.

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

Lists all Okta Support cases that the requesting principal has permission to view

SELECT
supportCases
FROM okta.org.support_cases
WHERE subdomain = '{{ subdomain }}' -- required
;

UPDATE examples

Updates access to the org for an Okta Support case:

* You can enable, disable, or extend access to your org for an Okta Support case.

* You can approve Okta Support access to your org for self-assigned cases. A self-assigned case is created and assigned by the same Okta Support user.

UPDATE okta.org.support_cases
SET
data__impersonation = '{{ impersonation }}',
data__selfAssigned = '{{ selfAssigned }}'
WHERE
subdomain = '{{ subdomain }}' --required
RETURNING
caseNumber,
impersonation,
selfAssigned,
subject
;