Slack
Last updated
Was this helpful?
Was this helpful?
{% 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 %}{% action "slack" %}
{
"account": "SLACK_ACCOUNT_NAME",
"method": "POST",
"url_path": "/chat.postMessage",
"headers": {
"Content-Type": "application/json"
},
"body": {
"username": "AiRobot",
"icon_emoji": ":robot_face:",
"channel": "CHANNEL_ID",
"text": "Slack Example Message",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Lorem ipsum dolor sit amet consectetur adipiscing elit."
}
}
]
}
}
{% endaction %}{
"type": "slack",
"run": {
"ok": true,
"result": {
"status": 200,
"body": {
...
}
}
}
}