Skip to main content

SaveWorkflowWebhookConfigInput

enabledbooleanrequired
targetstring
entrypointIdstring

Workflow Entry ID; when omitted, the saved entry is used, and the old configuration uses the target version default entry.

entrypoint_idstring

Compatible alias for entrypointId.

allowDraftboolean
resetSecretboolean
mapping object[]
  • Array [
  • bodyPathstringrequired
    inputNamestringrequired
  • ]
  • filters object[]
  • Array [
  • conditions object[]required
  • Array [
  • bodyPathstringrequired

    Webhook JSON body path. Use $ for the full body.

    operatorstringrequired

    Possible values: [equals, not_equals, contains, starts_with, ends_with, matches, in, exists, missing]

    valuestring

    Required for equals/not_equals/contains/starts_with/ends_with/matches.

    valuesstring[]

    Required for the in operator.

  • ]
  • ]
  • SaveWorkflowWebhookConfigInput
    {
    "enabled": true,
    "target": "string",
    "entrypointId": "string",
    "entrypoint_id": "string",
    "allowDraft": true,
    "resetSecret": true,
    "mapping": [
    {
    "bodyPath": "string",
    "inputName": "string"
    }
    ],
    "filters": [
    {
    "conditions": [
    {
    "bodyPath": "string",
    "operator": "equals",
    "value": "string",
    "values": [
    "string"
    ]
    }
    ]
    }
    ]
    }