
Sifflet RunRule
CertifiedTrigger a Sifflet data quality rule
Sifflet RunRule
Trigger a Sifflet data quality rule
Call Sifflet's /api/v1/rules/{ruleId}/_run endpoint to launch a rule run. Inputs are rendered with the Run Context; defaults include https://api.siffletdata.com and a 30s timeout.
type: io.kestra.plugin.sifflet.RunRuleExamples
Run a Sifflet rule
id: sifflet_flow
namespace: company.team
tasks:
- id: run_rule
type: io.kestra.plugin.sifflet.RunRule
apiKey: "{{ secret('SIFFLET_API_KEY') }}"
ruleId: "rule-123"
baseUrl: "https://api.siffletdata.com"
Run with default base URL and custom timeout
id: sifflet_flow
namespace: company.team
tasks:
- id: run_rule_timeout
type: io.kestra.plugin.sifflet.RunRule
apiKey: "{{ secret('SIFFLET_API_KEY') }}"
ruleId: "rule-456"
requestTimeout: 60
Properties
apiKey *RequiredNon-dynamicstring
Sifflet API key
Bearer token for the Sifflet API; renderable and should be stored as a secret
baseUrl Non-dynamicstring
Sifflet API base URL
Base URL for the Sifflet API; defaults to https://api.siffletdata.com when omitted
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
requestTimeout Non-dynamicinteger
30Request timeout
Timeout in seconds for both connection and request; defaults to 30
ruleId Non-dynamicstring
Rule ID
Identifier of the Sifflet rule to execute; required for a valid call and rendered before the request
Outputs
response string
Raw response from the Sifflet API
ruleId string
The ID of the executed rule
status string
Status of the rule execution (SUCCESS or FAILED)
statusCode integer
HTTP status code from the API response