Home / Connectors / Webhook connector

Webhook connector

Configure webhook to receive callbacks

inbound-intermediate

Required inputs

KeyLabelType
inbound.context Webhook ID string
Correlation key (process) FEEL expression
correlationKeyExpression Correlation key (payload) FEEL expression

Optional inputs

KeyLabelType
shouldValidateHmac HMAC authentication string
inbound.hmacSecret HMAC secret key secret
inbound.hmacHeader HMAC header string
inbound.hmacAlgorithm HMAC algorithm string
activationCondition Condition FEEL expression
resultVariable Result variable string
resultExpression Result expression FEEL expression

Apply this connector with @bpmnkit/connectors

import { applyConnectorTemplate } from "@bpmnkit/connectors" const result = applyConnectorTemplate("io.camunda.connectors.webhook.WebhookConnectorIntermediate.v1", { "inbound.context": "...", "": "= ...", "correlationKeyExpression": "= ...", "shouldValidateHmac": "enabled", "inbound.hmacSecret": "<your hmac secret key>", })