2

In the Slack message format example block below, how can I add unfurl_link option?

{
  "type": "section",
  "text": {
    "type": "mrkdwn",
    "text": "New Paid Time Off request from <example.com|Fred Enriquez>\n\n<https://example.com|View request>"
  }
}
Sunday Ezeilo
  • 175
  • 1
  • 10

1 Answers1

1

I'm guessing the snippet you posted is part of the blocks parameter, try adding the unfurl_links parameter with a value of false (outside the blocks):

{
  "token": "your-slack-token",
  "channel": "#test-channel",
  "unfurl_links": false,
  "blocks": [{
    "type": "section",
    "text": {
      "type": "mrkdwn",
      "text": "New Paid Time Off request from <example.com|Fred Enriquez>\n\n<https://example.com|View request>"
    }
  }]
}
Tyler2P
  • 2,324
  • 26
  • 22
  • 31
mcmx
  • 11
  • 3