I have created a slack slash command "/myMeetings", this is actually been configured with a requestURL - https://slack.mycompany.com/slack
So now my use case is to send a response which is having two text messages, one of the type ephemeral and other message for in_channel
request_type - in_channel
and
request_type - ephemeral
something like this
[
{
"response_type": "in_channel",
"text": "This message will be shown to the entire channel"
},
{
"response_type": "ephemeral",
"text": "only shown to the user who initiates slash command"
}
]
How can i achieve this behaviour?