# Actions

The Slack add-on contributes the following actions.

## Send Slack Message

Alias: `slack.sendMessage`. Posts a message to a Slack channel. Requires a Slack connection with the `chat:write` scope.

| Setting        | Description                                                                    |
| -------------- | ------------------------------------------------------------------------------ |
| **Connection** | The Slack connection to use.                                                   |
| **Channel**    | The channel name (for example, `#general`) or channel ID.                      |
| **Message**    | The message text. Supports [bindings](/umbraco-automate/concepts/bindings.md). |

### Output

| Field     | Description                                |
| --------- | ------------------------------------------ |
| `channel` | The channel ID the message was posted to.  |
| `ts`      | The Slack timestamp of the posted message. |

### Example

A trigger fires on **Content Published** and the next step is **Send Slack Message** with:

```
Channel: #content-updates
Message: ":rocket: ${ trigger.contentName } (${ trigger.contentTypeAlias }) was just published."
```

When the trigger fires, the resolved message is posted to the chosen channel.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.umbraco.com/umbraco-automate/add-ons/slack/actions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
