samples
turbot/flowpipe-samples/send-discord-message
OverviewPipelines
0
Triggers
0
Variables
GitHub

Send Discord Message

Send a message to a Discord channel.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run send_discord_message.pipeline.send_discord_message \
--arg 'discord_channel_id=<string>' \
--arg 'discord_message=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = send_discord_message.pipeline.send_discord_message
args = {
discord_channel_id = <string>
discord_message = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
discord_credstringYesName for Discord credentials to use. If not provided, the default credentials will be used.default
discord_channel_idstringYesThe ID of the channel to send the message to.-
discord_messagestringYesThe message to send.-

Outputs

NameDescription
create_message_check