contact_types
Creates, updates, deletes, gets or lists a contact_types resource.
Overview
| Name | contact_types |
| Type | Resource |
| Id | okta.org.contact_types |
Fields
The following fields are returned by SELECT queries:
- list_org_contact_types
| Name | Datatype | Description |
|---|---|---|
contactType | string | Type of contact |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_org_contact_types | select | subdomain | Lists 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.
| 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
- list_org_contact_types
Lists all org contact types for your Okta org
SELECT
contactType
FROM okta.org.contact_types
WHERE subdomain = '{{ subdomain }}' -- required
;