Web Hook Out Meta Data
@Serializable
Payload for an OutgoingWebHook executor node.
Constructors
Link copied to clipboard
constructor(name: String = "", sources: List<NodeIdentity> = emptyList(), targets: List<NodeIdentity> = emptyList(), url: String = "", method: HttpMethod = HttpMethod.GET, params: List<Pair<String, String>> = emptyList(), headers: List<Pair<String, String>> = emptyList(), executionSource: List<ExecutionSource> = emptyList(), error: String = "")
Properties
Link copied to clipboard
The set of ExecutionSources configured to wake this node. The node processor checks the incoming event against this list before doing any work. An empty list means "never auto-fire" — only manual execution.
Link copied to clipboard
HTTP verb to use — defaults to GET.
Link copied to clipboard
Upstream nodes whose values feed this one. For a filter or executor this is the data being read; for a trigger it is the value being watched.
Link copied to clipboard
Downstream nodes this one writes to or actuates. May be empty for nodes that only side-effect outside the swarm (e.g. an SMTP executor).