> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List pinned messages

> List messages pinned to a Slack conversation.

`slack.listPinnedMessages` lists a conversation's pinned messages.

## Example

```ts automations/list-pinned-messages.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { slack } from "automate.ax/slack"

export default automation("List pinned messages", () => {
  onDashboardRun({ title: "List pinned messages" })

  slack.listPinnedMessages({ conversationId: "C01234567" })
})
```

## Inputs

Requires the stable Slack `conversationId`.

## Output

Returns pinned messages with the pin creation time and member who pinned each message. Requires `pins:read` and access to the conversation.
