third_party_admin_setting
Creates, updates, deletes, gets or lists a third_party_admin_setting resource.
Overview
| Name | third_party_admin_setting |
| Type | Resource |
| Id | okta.org.third_party_admin_setting |
Fields
The following fields are returned by SELECT queries:
- get_third_party_admin_setting
| Name | Datatype | Description |
|---|---|---|
thirdPartyAdmin | boolean | Indicates if the third-party admin functionality is enabled |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_third_party_admin_setting | select | subdomain | Retrieves the third-party admin setting. See Configure third-party administrators in the Okta product documentation. | |
update_third_party_admin_setting | update | subdomain | Updates the third-party admin setting. This setting allows third-party admins to perform administrative actions in the Admin Console, but they can't do any of the following: * Receive Okta admin email notifications * Contact Okta support * Sign in to the Okta Help Center See Configure third-party administrators in the Okta product documentation. |
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_third_party_admin_setting
Retrieves the third-party admin setting. See Configure third-party administrators in the Okta product documentation.
SELECT
thirdPartyAdmin
FROM okta.org.third_party_admin_setting
WHERE subdomain = '{{ subdomain }}' -- required
;
UPDATE examples
- update_third_party_admin_setting
Updates the third-party admin setting.
This setting allows third-party admins to perform administrative actions in the Admin Console, but they can't do any of the following:
* Receive Okta admin email notifications
* Contact Okta support
* Sign in to the Okta Help Center
See Configure third-party administrators in the Okta product documentation.
UPDATE okta.org.third_party_admin_setting
SET
data__thirdPartyAdmin = {{ thirdPartyAdmin }}
WHERE
subdomain = '{{ subdomain }}' --required
RETURNING
thirdPartyAdmin
;