How do I send "@here" with the Slack API?
<!here>
is the solution. There are other commands that work with the <!___>
format.
Check out this part of the official Slack documentation for an overview about all such variables.
I use this:
var message= {
"text": "<!here> test text"
} ;