sample
turbot/flowpipe-samples/send-teams-message
Get Involved
Version
Pipeline: Send Teams Message
Send a new chat message in the specified channel.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run send_teams_message.pipeline.send_teams_message \ --arg 'teams_team_id=<string>' \ --arg 'teams_channel_id=<string>' \ --arg 'teams_message=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = send_teams_message.pipeline.send_teams_message args = { teams_team_id = <string> teams_channel_id = <string> teams_message = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
teams_conn | connection.teams | Yes | Name for Microsoft Teams connections to use. If not provided, the default connection will be used. | connection.teams.default |
teams_team_id | string | Yes | The unique identifier of the team. | - |
teams_channel_id | string | Yes | The channel's unique identifier. | - |
teams_message | string | Yes | The message to send. | - |
teams_message_content_type | string | No | The type of the content. Possible values are text and html. | text |
Outputs
Name | Description |
---|---|
message | Channel message details. |
Tags
recommended = true