DROP SECURITY INTEGRATION

Syntax

DROP SECURITY INTEGRATION security_integration_name;

Description

Drops a Security Integration from the organization. A security integration can only be dropped by the Role with MANAGE_MEMBERS privilege.

Arguments

security_integration_name

Specifies the name of the new Security Integration. For case-sensitive names, the name must be wrapped in double quotes, otherwise, the lowercased name will be used.

Examples

Drop a Security Integration

The following drops the Security Integration named okta:

<no-db>/<no-store># LIST SECURITY INTEGRATIONS;
  Name | Type |             Details              |      Created at      |      Updated at       
-------+------+----------------------------------+----------------------+-----------------------
  okta | Scim | Client: OKTA                     | 2023-10-05T16:36:44Z | 2023-10-05T16:36:44Z  
       |      | Expires at: 2024-01-03T16:36:44Z |                      |                       
       |      |                                  |                      |                       
<no-db>/<no-store># DROP SECURITY INTEGRATIONS "okta";
<no-db>/<no-store># LIST SECURITY INTEGRATIONS;
  Name | Type | Details | Created at | Updated at  
-------+------+---------+------------+-------------

Last updated