slack.listCustomEmoji lists the workspace’s custom emoji map.
Example
automations/list-custom-emoji.automation.ts
Output
Returns a record keyed by emoji name. Values are image URLs oralias:name references. Requires emoji:read.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List custom Slack emoji names and their image URLs or aliases.
slack.listCustomEmoji lists the workspace’s custom emoji map.
import { automation, onDashboardRun } from "automate.ax"
import { slack } from "automate.ax/slack"
export default automation("List custom emoji", () => {
onDashboardRun({ title: "List custom emoji" })
slack.listCustomEmoji()
})
alias:name references. Requires emoji:read.