Slack
Authentication
Basic Usage
{% action "slack" %}
{
"account": "SLACK_ACCOUNT_NAME",
"method": "POST",
"url_path": "/chat.postMessage",
"headers": {
"Content-Type": "application/json"
},
"body": {
"channel": "CHANNEL_ID",
"text": "Slack Example Message",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Lorem ipsum dolor sit amet consectetur adipiscing elit."
}
}
]
}
}
{% endaction %}Last updated
Was this helpful?