Hi everyone! I could really use a hand with this.
I’m trying to send Slack messages from my Glide app and have run into a wall. Here’s the situation:
- Setup so far
- Created a Slack app and enabled an Incoming Webhook for one specific channel.
- Copied the webhook URL and pasted it into Glide’s Trigger Webhook action.
- What already works
- In Request body I set
- Title (key) → text
- Value → “hello, world”
- Slack receives the plain-text message just fine.
- What fails
- I want to send Block Kit JSON (so the message has sections, fields, etc.).
- Any time I try to put a key like blocks (or payload) with the JSON as the value, Glide returns:
Trigger webhook: Request failed with status 400
- Question
- Has anyone successfully posted Block Kit messages to Slack using Glide’s Trigger Webhook?
- Do I need a different body format, a special header, or maybe switch to Slack’s chat.postMessage endpoint instead of the incoming webhook?
Any pointers or examples would be hugely appreciated. Thanks in advance!