Slack Webhook
Receive events from Slack
Required inputs
| Key | Label | Type |
|---|---|---|
inbound.context | Webhook ID | string |
inbound.slackSigningSecret | Slack signing secret | secret |
Optional inputs
| Key | Label | Type |
|---|---|---|
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.inbound.Slack.StartEvent.v1", {
"inbound.context": "...",
"inbound.slackSigningSecret": "<your slack signing secret>",
"activationCondition": "= ...",
"resultVariable": "...",
})