Skip to main content

ReplyToTeamsChannelNodeConfiguration

Namespace: Meshmakers.Octo.MeshAdapter.Nodes.Transform

Configuration for sending a message to a Microsoft Teams channel via Incoming Webhook

public record ReplyToTeamsChannelNodeConfiguration : NodeConfiguration, INodeConfiguration, IEquatable<NodeConfiguration>, IEquatable<ReplyToTeamsChannelNodeConfiguration>

Inheritance Object → NodeConfiguration → ReplyToTeamsChannelNodeConfiguration
Implements INodeConfiguration, IEquatable<NodeConfiguration>, IEquatable<ReplyToTeamsChannelNodeConfiguration>

Properties

WebhookUrl

The Teams Incoming Webhook URL (static value)

public string WebhookUrl { get; set; }

Property Value

String

WebhookUrlPath

JSON path to the webhook URL in the data context (alternative to WebhookUrl)

public string WebhookUrlPath { get; set; }

Property Value

String

MessageBodyPath

JSON path to the reply message body (HTML or plain text)

public string MessageBodyPath { get; set; }

Property Value

String

MessageBody

Static reply message body with ${jsonPath} placeholder support

public string MessageBody { get; set; }

Property Value

String

Title

Optional title displayed as a header in the Teams message card

public string Title { get; set; }

Property Value

String

ThemeColor

Theme color for the message card (hex without #, e.g. "0076D7")

public string ThemeColor { get; set; }

Property Value

String

ContinueOnError

Whether to continue pipeline execution if sending the message fails

public bool ContinueOnError { get; set; }

Property Value

Boolean

Description

public string Description { get; set; }

Property Value

String

Constructors

ReplyToTeamsChannelNodeConfiguration()

public ReplyToTeamsChannelNodeConfiguration()