library
turbot/slack
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Get Message Permalink

Retrieve a permalink URL for a specific extant message.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run slack.pipeline.get_message_permalink \
--arg 'channel=<string>' \
--arg 'message_ts=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = slack.pipeline.get_message_permalink
args = {
channel = <string>
message_ts = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.slack
YesName of Slack connection to use. If not provided, the default Slack connection will be used.connection.slack.default
channel
string
YesThe ID of the conversation or channel containing the message.-
message_ts
string
YesA message's ts value, uniquely identifying it within a channel.-

Outputs

NameDescription
permalinkMessage Permalink URL.