Slack Integration
Extract member data from public Slack channels for lead generation and community analysis.
Before you begin
- You need an active TexAu account with available credits.
- You need access to the Slack workspace you want to extract data from.
- You need your Slack authentication cookie (starts with
xoxd-) and API token (starts withxoxc-). You can find these in your browser's developer tools while logged into Slack. - You need the Slack channel ID. Right-click a channel name in Slack and select Copy link to find the channel ID in the URL.
Get Slack Channel Members
Retrieves the member list and their profile details from a public Slack channel using workspace credentials.
Credit cost: 2 credits per execution
Input parameters
| Parameter | Display name | Required | Description |
|---|---|---|---|
| workspace | Workspace | Yes | The Slack workspace slug (e.g., 'texauhq'). |
| channel_id | Channel ID | Yes | The Slack Channel ID. |
| cookie | Slack Auth Cookie | Yes | Your Slack authentication cookie (starts with 'xoxd-'). |
| token | Slack API Token | Yes | Your Slack API token (starts with 'xoxc-'). |
Output fields
| Field | Display name | Type |
|---|---|---|
| workspace | Workspace | text |
| channel_id | Channel ID | text |
| total_members | Total Members Extracted | number |
| user_ids | User IDs | text |
| real_names | Real Names | text |
| display_names | Display Names | text |
| emails | Emails | text |
| titles | Titles | text |
| phones | Phone Numbers | text |
| status_texts | Status Texts | text |
| timezones | Timezones | text |
| is_admins | Is Admin Status | text |
| is_owners | Is Owner Status | text |
| avatar_urls | Avatar URLs | url |
This action returns multiple results per execution. Up to 50 members are extracted per run.
How to find your Slack credentials
- Open Slack in your web browser (not the desktop app).
- Open the browser developer tools (press F12 or right-click and select Inspect).
- Go to the Application tab (Chrome) or Storage tab (Firefox).
- Under Cookies, find the cookie named
d. Its value is your Slack Auth Cookie (starts withxoxd-). - For the API token, go to the Console tab and look for network requests to Slack's API. The token starts with
xoxc-.
How to find a Slack channel ID
- In Slack, right-click the channel name in the sidebar.
- Select Copy link.
- The channel ID is the last segment of the URL (e.g.,
C01ABC2DEFG).
Troubleshooting
Authentication error Your Slack cookie or token may have expired. Log into Slack in your browser again and re-extract the credentials.
No members returned Make sure the channel ID is correct and that you have access to the channel. Private channels require you to be a member.
Only partial member list The action extracts up to 50 members per execution. For larger channels, run the action multiple times or use it as part of a workflow.
Workspace slug not recognized
The workspace slug is the subdomain you see when using Slack in a browser (e.g., for texauhq.slack.com, the slug is texauhq).