I currently read the interactive button and it works fine, but what i want is to make it open a URL, the bot I’m creating posts a direct message to a user about opened issue, and i want the user to be able to click on “Open” button and get to the issue on my system.
this is what i have came up with up to now:
[
'channel_id' => 'channel_id',
'message' => 'a new issue is opened',
'props' => [
'attachments' => [
[
'title' => 'Issue #322',
'text' => 'act as fast as you can..',
'actions' => [
[
"id" => "open",
"name" => "Open",
"integration" => [
"url" => "http://path_to_issue",
],
],
],
],
],
],
]
Note: I’m using API to achieve this.