2,917 questions
0 votes
0 answers
56 views
Why does the Request URL receive interactions from message buttons but not from buttons in modals?
I'm struggling to troubleshoot this issue. I have a Slack+N8n setup, correctly configured to receive payloads through the Request URL configured on Slack under the Interactivity page. As long as I ...
Advice
0 votes
1 replies
36 views
Share data between functions called by external library
I'm writing a slackbot using bolt_python which consists of writing functions that are called during events. Multiple of the events I want to respond to use the same data that I get from an external ...
0 votes
0 answers
36 views
Slack files.getUploadURLExternal API returns “missing required field: length / filename” even though fields are provided
I'm trying to migrate from the deprecated files.upload API to the new Slack upload flow using files.getUploadURLExternal. According to the documentation, the request should include a filename and ...
0 votes
0 answers
22 views
Could not retrieve column IDs with "select" and "date" type field using Slack's Task Tracker list API endpoint
I have recently started exploring Slack’s Task Tracker and Workflows features. While testing, I found that some automations I’d like to implement aren’t possible with Slack Workflows alone, so I ...
-4 votes
1 answer
63 views
slack-ruby-client gem: where does client id and secret go?
I'm trying to use the slack-ruby-client gem. Ive made a Slack app and have all the client id, secret, etc. But i cant work out what i am supposed to do with them. In that gem it has the following: ...
0 votes
0 answers
44 views
How to attach a JSON file to a Slack message?
I'm using the Slack Poster gem to send messages to a Slack channel via a webhook. I can send a message like so, and it comes through fine: string = "Here is your attachment" poster = Slack::...
0 votes
1 answer
98 views
How to identify if a Slack message is a thread reply?
Using the ts of a Slack message (e.g. 1234567890.123456), how can I know if that message is reply in a thread or a regular message in a channel? If if is in a thread, I want to reply to the thread. ...
0 votes
0 answers
52 views
Slack Bolt Challenge failing
So I am trying to create a slack bot to help us out with on call. Trying to get the events setup but when I try to enable, I am getting the error that I didn't respond with the value of the challenge ...
0 votes
0 answers
57 views
How to join public channel?
I'm trying to join a public Slack channel that I'm not currently in via the Slack API. Using the conversations.join method. The request appears to run fine, returns a 200 with a success and metadata ...
0 votes
0 answers
49 views
How to post a table with hyperlinked text in the cells for a slack canvas page using Slack API SDK?
I am trying to post a table to a slack canvas page, with cells that contain hyperlinked text (simple status report), btu I can't get the content formatted properly for the canvases_edit call. I post ...
0 votes
0 answers
74 views
Passing authorization token with Slack API Event request
I'm trying to connect a request from the Slack Event API with a Google Apps Script Web App. I've set up and deployed a minimal Google Apps Script Web App with a doPost() method like this: function ...
0 votes
0 answers
65 views
Triggers not properly working for app based on Deno Starter Template
I have created a custom slack app that should be triggered when a message is posted in a particular group. It has a custom workflow, a custom function and a trigger itself. When I am trying to send a ...
0 votes
0 answers
26 views
Slack Integration: Routing Routine Agents built in the same space
I've created a Routine Agent that is supposed to route users to other Routine Agents through conditional actions. All the Routine Agents are built in the same space as the main agent. So the main ...
-5 votes
1 answer
188 views
How to Programmatically Mention/Tag a User in a Slack Canvas Using the API?
I'm trying to use the Slack API to mention/tag a user in a canvas so others can click the name to reach out (open profile or DM). Manually typing @UserName in the canvas UI works, creating a clickable ...
0 votes
0 answers
80 views
Cannot import 'WebClient' and 'SlackApiError' from slack_sdk in Python
I'm trying to send a message to Slack using Python and the slack_sdk library, but I'm getting an import error. from slack_sdk import WebClient from slack_sdk.errors import SlackApiError The IDE (VS ...