Slack
Slack is a messaging app for business that connects people to the information they need. By bringing people together to work as one unified team, Slack transforms the way organizations communicate.
The Slack Wrapper is a WebAssembly (Wasm) foreign data wrapper which allows you to query Slack workspaces, channels, messages, and users directly from your Postgres database.
Available Versions#
| Version | Wasm Package URL | Checksum | Required Wrappers Version |
|---|---|---|---|
| 0.2.0 | https://github.com/supabase/wrappers/releases/download/wasm_slack_fdw_v0.2.0/slack_fdw.wasm | bfb0d22ffea2092c049773302c049162a2a57ddc265da59a83116bf29ed40c3a | >=0.5.0 |
| 0.1.0 | https://github.com/supabase/wrappers/releases/download/wasm_slack_fdw_v0.1.0/slack_fdw.wasm | 5b022b441c0007e31d792ecb1341bfffed1c29cb865eb0c7969989dff0e8fdc3 | >=0.4.0 |
| 0.0.6 | https://github.com/supabase/wrappers/releases/download/wasm_slack_fdw_v0.0.6/slack_fdw.wasm | 349cb556f87a0233e25eb608a77e840531bc87f1acf9916856268bdcdd9973e2 | >=0.4.0 |
Preparation#
Before you can query Slack, you need to enable the Wrappers extension and store your credentials in Postgres.
Enable Wrappers#
Make sure the wrappers extension is installed on your database:
create extension if not exists wrappers with schema extensions;Enable the Slack Wrapper#
Enable the Wasm foreign data wrapper:
create foreign data wrapper wasm_wrapper handler wasm_fdw_handler validator wasm_fdw_validator;Create a Slack API Token#
- Visit the Slack API Apps page
- Click "Create New App" and select "From scratch"
- Name your app and select the workspace to install it
- Navigate to "OAuth & Permissions" in the sidebar
- Under "Scopes", add the following Bot Token Scopes:
channels:history- Read messages in public channelschannels:read- View basic channel informationusers:read- View users in workspaceusers:read.email- View email addressesfiles:read- View files shared in channelsreactions:read- View emoji reactionsteam:read- View information about the workspaceusergroups:read- View user groups and their members
- Install the app to your workspace
- Copy the "Bot User OAuth Token" that starts with
xoxb-
Store credentials (optional)#
By default, Postgres stores FDW credentials inside pg_catalog.pg_foreign_server in plain text. Anyone with access to this table will be able to view these credentials. Wrappers is designed to work with Vault, which provides an additional level of security for storing credentials. We recommend using Vault to store your credentials.
-- Save your Slack API token in Vault and retrieve the created `key_id`select vault.create_secret( 'xoxb-your-slack-token' -- Slack Bot User OAuth Token 'slack', 'Slack API token for Wrappers');Connecting to Slack#
We need to provide Postgres with the credentials to access Slack and any additional options. We can do this using the create server command:
create server slack_server foreign data wrapper wasm_wrapper options ( fdw_package_name 'supabase:slack-fdw', fdw_package_url '{See: "Available Versions"}', fdw_package_checksum '{See: "Available Versions"}', fdw_package_version '{See: "Available Versions"}', -- eg: 0.1.0 api_token_id '<key_ID>', -- The Key ID from Vault workspace 'your-workspace' -- Optional workspace name );The full list of server options are below:
fdw_package_*: required. Specify the Wasm package metadata. You can get the available package version list from above.api_token|api_token_idapi_token:Slack Bot User OAuth Token, required if not using Vault.api_token_id: Vault secret key ID storing the Slack token, required if using Vault.
workspace- Slack workspace name, optional.
Create a schema#
We recommend creating a schema to hold all the foreign tables:
create schema if not exists slack;Entities#
The Slack Wrapper supports data reads from the Slack API.
We can use SQL import foreign schema to import foreign table definitions from Slack.
For example, using below SQL can automatically create foreign tables in the slack schema.
-- create all the foreign tablesimport foreign schema slack from server slack_server into slack;-- or, create selected tables onlyimport foreign schema slack limit to ("messages", "channels") from server slack_server into slack;-- or, create all foreign tables except selected tablesimport foreign schema slack except ("messages") from server slack_server into slack;Messages#
This represents messages from channels, DMs, and group messages.
Ref: Slack conversations.history API
Operations#
| Object | Select | Insert | Update | Delete | Truncate |
|---|---|---|---|---|---|
| messages | ✅ | ❌ | ❌ | ❌ | ❌ |
Usage#
create foreign table slack.messages ( ts text, user_id text, channel_id text, text text, thread_ts text, reply_count integer) server slack_server options ( resource 'messages' );Notes#
- The
tsfield is the message timestamp ID and is used as the primary key - Supports query pushdown for channel filtering
- Requires the
channels:historyscope
Channels#
This represents all channels in the workspace.
Ref: Slack conversations.list API
Operations#
| Object | Select | Insert | Update | Delete | Truncate |
|---|---|---|---|---|---|
| channels | ✅ | ❌ | ❌ | ❌ | ❌ |
Usage#
create foreign table slack.channels ( id text, name text, is_private boolean, created timestamp, creator text)server slack_serveroptions ( resource 'channels');Notes#
- The
idfield is the channel ID and is used as the primary key - Requires the
channels:readscope
Users#
This represents all users in the workspace.
Ref: Slack users.list API
Operations#
| Object | Select | Insert | Update | Delete | Truncate |
|---|---|---|---|---|---|
| users | ✅ | ❌ | ❌ | ❌ | ❌ |
Usage#
create foreign table slack.users ( -- Basic information id text, name text, -- Name and profile fields real_name text, display_name text, display_name_normalized text, real_name_normalized text, -- Contact information email text, phone text, skype text, -- Role information is_admin boolean, is_owner boolean, is_primary_owner boolean, is_bot boolean, is_app_user boolean, is_restricted boolean, is_ultra_restricted boolean, deleted boolean, -- Status information status_text text, status_emoji text, status_expiration bigint, title text, -- Team information team_id text, team text, -- Time zone information tz text, tz_label text, tz_offset integer, locale text, -- Avatar/image URLs image_24 text, image_48 text, image_72 text, image_192 text, image_512 text, -- Miscellaneous color text, updated bigint)server slack_serveroptions ( resource 'users');Notes#
- The
idfield is the user ID and is used as the primary key - Requires the
users:readscope - Email field requires the
users:read.emailscope - Supports query pushdown for filtering by
name,email, andteam_iddirectly via the Slack API - Supports sorting by
name,real_name, andemail - Supports LIMIT and OFFSET clauses for pagination
User Groups#
This represents user groups (a.k.a. user groups) in the workspace.
Ref: Slack usergroups.list API
Operations#
| Object | Select | Insert | Update | Delete | Truncate |
|---|---|---|---|---|---|
| usergroups | ✅ | ❌ | ❌ | ❌ | ❌ |
Usage#
create foreign table slack.usergroups ( id text, team_id text, name text, handle text, description text, is_external boolean, date_create bigint, date_update bigint, date_delete bigint, auto_type text, created_by text, updated_by text, deleted_by text, user_count integer, channel_count integer)server slack_serveroptions ( resource 'usergroups');-- Get all user groupsselect * from slack.usergroups;-- Get user groups sorted by nameselect * from slack.usergroups order by name;Notes#
- The
idfield is the user group ID and is used as the primary key - Requires the
usergroups:readscope - Supports query pushdown for filtering by
team_idandinclude_disabled - Supports sorting by
name,handle,date_create, anddate_update - Supports LIMIT and OFFSET clauses for pagination
User Group Members#
This represents the membership relationship between users and user groups.
Ref: Slack usergroups.users.list API
Operations#
| Object | Select | Insert | Update | Delete | Truncate |
|---|---|---|---|---|---|
| usergroup_members | ✅ | ❌ | ❌ | ❌ | ❌ |
Usage#
create foreign table slack.usergroup_members ( usergroup_id text, usergroup_name text, usergroup_handle text, user_id text)server slack_serveroptions ( resource 'usergroup_members');-- Get all user group membershipsselect * from slack.usergroup_members;Notes#
- The
usergroup_idanduser_idfields form a composite primary key - Requires the
usergroups:readscope - Supports LIMIT and OFFSET clauses for pagination
- To avoid excessive API calls and potential rate limiting, consider using materialized views instead of direct joins
Files#
This represents files shared in the workspace.
Ref: Slack files.list API
Operations#
| Object | Select | Insert | Update | Delete | Truncate |
|---|---|---|---|---|---|
| files | ✅ | ❌ | ❌ | ❌ | ❌ |
Usage#
create foreign table slack.files ( id text, name text, title text, mimetype text, size bigint, url_private text, user_id text, created timestamp)server slack_serveroptions ( resource 'files');Notes#
- The
idfield is the file ID and is used as the primary key - Requires the
files:readscope - Supports query pushdown for filtering by channel or user
Team Info#
This represents information about the team/workspace.
Ref: Slack team.info API
Operations#
| Object | Select | Insert | Update | Delete | Truncate |
|---|---|---|---|---|---|
| team-info | ✅ | ❌ | ❌ | ❌ | ❌ |
Usage#
create foreign table slack.team_info ( id text, name text, domain text, email_domain text)server slack_serveroptions ( resource 'team-info');Notes#
- Returns a single row with team information
- No special scopes required beyond authentication
Query Pushdown Support#
This FDW supports the following condition pushdowns:
| Resource | Supported Filters | Sorting | Limit/Offset |
|---|---|---|---|
| messages | channel_id, oldest, latest | No | Yes* |
| users | name, email, team_id | name, real_name, email | Yes |
| usergroups | team_id, include_disabled | name, handle, date_create, date_update | Yes |
| usergroup_members | (no filter support) | No | Yes |
| channels | types (public/private) | No | Yes* |
| files | channel_id, user_id, ts_from, ts_to | No | No |
| team-info | (no filter support) | No | No |
* Pagination is supported through cursor-based pagination from the Slack API
Supported Data Types#
| Postgres Data Type | Slack JSON Type |
|---|---|
| text | string |
| boolean | boolean |
| integer | number |
| bigint | number |
| timestamp | string (Unix timestamp) |
Required Slack API Scopes#
Each entity type in the Slack FDW requires specific API scopes. If you get a missing_scope error, you may need to add additional scopes and reinstall your app to the workspace.
| Entity Type | Required Scopes | Error If Missing |
|---|---|---|
| users | users:read | "The token used is not granted the required scopes" |
| users (emails) | users:read.email | "missing_scope" on email fields |
| usergroups | usergroups:read | "missing_scope" when querying user groups |
| usergroup_members | usergroups:read | "missing_scope" when querying user group members |
| channels | channels:read | "missing_scope" when querying channels |
| messages | channels:history, channels:read | "missing_scope" when querying messages |
| files | files:read | "missing_scope" when querying files |
| team-info | team:read | "missing_scope" when querying team info |
Adding Scopes to an Existing App#
If you need to add scopes to an existing Slack app:
- Go to Your Slack Apps
- Select your app
- Click "OAuth & Permissions" in the sidebar
- Under "Bot Token Scopes", click "Add an OAuth Scope"
- Add any missing scopes from the table above
- Scroll up and click "Reinstall to Workspace"
- Approve the new permissions
- Copy the new Bot User OAuth Token (it may have changed)
- Update your token in your database server configuration
Limitations#
This section describes important limitations and considerations when using this FDW:
- Large result sets may experience slower performance due to pagination requirements
- Rate limits are enforced by the Slack API (Tier 2: 20+ requests/minute)
- Messages older than the workspace retention policy are not accessible
- Private channels require the
groups:historyandgroups:readscopes - Direct messages require the
im:historyandim:readscopes
Troubleshooting#
Error: "Slack API error: missing_scope"#
This error occurs when your Slack token doesn't have all the required OAuth scopes for the resource you're trying to access.
Solution:
- Check the Required Slack API Scopes section above to see which scopes are needed for the entity you're querying
- Follow the steps in the "Adding Scopes to an Existing App" section to add the missing scopes
- Reinstall your app to the workspace
- Update your token in the PostgreSQL server configuration
Error: "channel_id is required for querying messages"#
When querying the messages table, you must include a WHERE channel_id = 'CXXXXXXXX' clause.
Solution:
-- Incorrect (will error):SELECT * FROM slack.messages LIMIT 10;-- Correct:SELECT * FROM slack.messages WHERE channel_id = 'C01234ABCDE' LIMIT 10;Error: "Rate limit exceeded"#
Slack's API enforces rate limits (Tier 2: ~20 requests/minute).
Solution:
- Add more specific WHERE clauses to reduce the number of API calls
- Use smaller LIMIT values
- Consider materialized views for frequent queries:
CREATE MATERIALIZED VIEW slack_users AS SELECT * FROM slack.users;-- Query the materialized view insteadSELECT * FROM slack_users;-- Refresh when needed (less frequently)REFRESH MATERIALIZED VIEW slack_users;Examples#
Below are some examples on how to use Slack foreign tables.
Basic Example#
This example will create a "foreign table" inside your Postgres database and query its data.
create foreign table slack.channels ( id text, name text, is_private boolean, created timestamp, creator text)server slack_serveroptions ( resource 'channels');-- Query all channelsselect * from slack.channels;User Information#
create foreign table slack.users ( -- Basic subset of fields id text, name text, real_name text, email text, is_admin boolean, is_bot boolean, -- Additional useful fields display_name text, phone text, title text, status_text text, status_emoji text, team_id text, image_192 text)server slack_serveroptions ( resource 'users');-- List all admin usersselect * from slack.users where is_admin = true;-- Get users ordered by nameselect * from slack.users order by name;-- Get top 5 non-bot users ordered by real_name select * from slack.users where is_bot = false order by real_name limit 5;-- Filter users by email domainselect * from slack.users where email like '%@example.com' order by name;-- Find user by name (pushes filter down to API)select * from slack.users where name = 'johndoe';-- Show user with their profile pictureselect id, name, real_name, image_192 as profile_picture from slack.users where name = 'johndoe';User Groups Example#
-- Create tablescreate foreign table slack.usergroups ( id text, name text, handle text, description text, user_count integer)server slack_serveroptions ( resource 'usergroups');create foreign table slack.usergroup_members ( usergroup_id text, usergroup_name text, usergroup_handle text, user_id text)server slack_serveroptions ( resource 'usergroup_members');-- Get all user groupsselect name, handle, description, user_count from slack.usergroups order by name;-- Get all members of a user group (just IDs)select * from slack.usergroup_members where usergroup_id = 'S01234ABCDE';Messages from a Specific Channel#
create foreign table slack.messages ( ts text, user_id text, channel_id text, text text, thread_ts text, reply_count integer)server slack_serveroptions ( resource 'messages');-- Get messages from a specific channelselect * from slack.messages where channel_id = 'C01234ABCDE'limit 100;