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
WebhookUrlPath
JSON path to the webhook URL in the data context (alternative to WebhookUrl)
public string WebhookUrlPath { get; set; }
Property Value
MessageBodyPath
JSON path to the reply message body (HTML or plain text)
public string MessageBodyPath { get; set; }
Property Value
MessageBody
Static reply message body with ${jsonPath} placeholder support
public string MessageBody { get; set; }
Property Value
Title
Optional title displayed as a header in the Teams message card
public string Title { get; set; }
Property Value
ThemeColor
Theme color for the message card (hex without #, e.g. "0076D7")
public string ThemeColor { get; set; }
Property Value
ContinueOnError
Whether to continue pipeline execution if sending the message fails
public bool ContinueOnError { get; set; }
Property Value
Description
public string Description { get; set; }
Property Value
Constructors
ReplyToTeamsChannelNodeConfiguration()
public ReplyToTeamsChannelNodeConfiguration()