Skip to main content
FuseFuse
IntegrationsSlackActions

Get Slack message permalink

Retrieve a permalink URL for an existing Slack message.

Agent markdown

messages.get_permalink · Slack · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
channel_idstringYesminLength 1; maxLength 64
message_tsstringYesminLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
channel_idstringYes
permalinkstringYes

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "channel_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "message_ts": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "channel_id",
    "message_ts"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "channel_id": {
      "type": "string"
    },
    "permalink": {
      "type": "string"
    }
  },
  "required": [
    "channel_id",
    "permalink"
  ]
}