
Zapier TriggerZap
CertifiedSend data to a Zap
Zapier TriggerZap
Send data to a Zap
Sends an HTTP request to a Zapier Catch Hook URL to trigger a Zap.
Supports POST, PUT, and GET; POST is the default, JSON content is only sent for POST and PUT, and the request timeout defaults to 30 seconds.
type: io.kestra.plugin.zapier.TriggerZapExamples
Trigger a Zap with a JSON payload
id: trigger_zap
namespace: company.team
tasks:
- id: trigger_zap
type: io.kestra.plugin.zapier.TriggerZap
url: "{{ secret('ZAPIER_WEBHOOK_URL') }}"
content:
name: "Kestra"
event: "workflow_completed"
status: "success"
Properties
url *Requiredstring
Zapier Catch Hook URL
Full Zapier webhook URL to call after rendering.
Use the Catch Hook URL provided by Zapier, typically https://hooks.zapier.com/hooks/catch/...
allowFailed booleanstring
falseAllow failed HTTP responses
When enabled, the task returns output for non-2xx responses instead of failing.
Defaults to false, so HTTP failures raise an exception unless explicitly allowed
content object
JSON request content
Optional map rendered from the task context and serialized as JSON.
Ignored for GET requests because this task only builds a request body for POST and PUT
headers object
Custom HTTP headers
Optional headers added to the outbound request after rendering.
If a JSON body is sent and Content-Type is not provided, this task sets it to application/json
method string
POSTPOSTPUTGETHTTP method
HTTP method used for the webhook call.
Defaults to POST; supported values are POST, PUT, and GET
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
timeout string
PT30SRequest timeout
Maximum time to wait for the Zapier webhook response. Defaults to 30 seconds and is applied as the HTTP connect timeout configuration
Outputs
attemptId string
Zapier attempt or request ID
X-Attempt-Id or X-Request-Id extracted from the response headers when Zapier provides one.
Returns null when neither header is present
body string
Raw response body
Response body returned by Zapier as a string
status integer
HTTP response status code
Status code returned by the Zapier webhook endpoint