Webhook connector
Configure webhook to receive callbacks
Required inputs
| Key | Label | Type |
|---|---|---|
inbound.context | Webhook ID | string |
| Correlation key (process) | FEEL expression |
correlationKeyExpression | Correlation key (payload) | FEEL expression |
Optional inputs
| Key | Label | Type |
|---|---|---|
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>",
})