Skip to main content

contact_types

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

Overview

Namecontact_types
TypeResource
Idokta.org.contact_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contactTypestringType of contact

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_org_contact_typesselectsubdomainLists all org contact types for your Okta 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

Lists all org contact types for your Okta org

SELECT
contactType
FROM okta.org.contact_types
WHERE subdomain = '{{ subdomain }}' -- required
;