SHOW INTEGRATIONS¶
Lists the integrations in your account.
The output returns integration metadata and properties.
- See also:
CREATE INTEGRATION , DROP INTEGRATION , ALTER INTEGRATION , DESCRIBE INTEGRATION
- API integrations
- Notification integrations
- Security integrations
- Storage integrations
Syntax¶
SHOW [ { API | NOTIFICATION | SECURITY | STORAGE } ] INTEGRATIONS [ LIKE '<pattern>' ]
Parameters¶
API | NOTIFICATION | SECURITY | STORAGE
Returns integrations of the specified type only.
LIKE 'pattern'
Filters the command output by object name. The filter uses case-insensitive pattern matching, with support for SQL wildcard characters (
%
and_
).For example, the following patterns return the same results:
... LIKE '%testing%' ...
... LIKE '%TESTING%' ...
Access Control Requirements¶
This command returns all requested integrations for a user with any active role. Note that the ability to list all integrations is not the same as using an integration. Using an integration requires the appropriate minimum privilege on the integration object.
For general information about roles and privilege grants for performing SQL actions on securable objects, see Access Control in Snowflake.
Usage Notes¶
Currently, only the
API | NOTIFICATION | SECURITY | STORAGE
parameter is supported.The command does not require a running warehouse to execute.
To post-process the output of this command, you can use the RESULT_SCAN function, which treats the output as a table that can be queried.
Output¶
The command output provides table properties and metadata in the following columns:
| name | type | category | enabled | comment | created_on |
Column |
Description |
---|---|
|
Name of the integration |
|
Type of the integration |
|
Category of the integration |
|
Current status of the integration, either TRUE (enabled) or FALSE (disabled) |
|
Comment for the integration |
|
Date and time when the integration was created |
For more information about the properties that can be specified for an integration, see the following topic for the integration by type:
Examples¶
Show all notification integrations:
SHOW NOTIFICATION INTEGRATIONS;
Show all the integrations whose name starts with line
that you have privileges to view:
SHOW INTEGRATIONS LIKE 'line%';