Webhook Connector
Configure webhook to receive callbacks
Required inputs
| Key | Label | Type |
|---|---|---|
inbound.context | Webhook ID | string |
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 |
inbound.activationCondition | Condition | FEEL expression |
inbound.variableMapping | Variables | FEEL expression |
Apply this connector with @bpmnkit/connectors
import { applyConnectorTemplate } from "@bpmnkit/connectors"
const result = applyConnectorTemplate("io.camunda.connectors.webhook.WebhookConnector.v1", {
"inbound.context": "...",
"shouldValidateHmac": "enabled",
"inbound.hmacSecret": "<your hmac secret key>",
})