Loading...
Loading...
Zapier API for workflow automation. Use when user mentions "Zapier", "zap", "automation", or asks about connecting apps.
npx skill4agent add vm0-ai/vm0-skills zapierzero doctor check-connector --env-name ZAPIER_TOKENzero doctor check-connector --url https://actions.zapier.com/api/v2/check/ --method GETZAPIER_TOKENx-api-keycurl -s "https://actions.zapier.com/api/v2/check/" --header "x-api-key: $ZAPIER_TOKEN" | jq .curl -s "https://actions.zapier.com/api/v1/exposed/" --header "x-api-key: $ZAPIER_TOKEN" | jq '.results[] | {id, description, params}'ACTION_IDcurl -s -X POST "https://actions.zapier.com/api/v2/ai-actions/ACTION_ID/execute/" --header "Content-Type: application/json" --header "x-api-key: $ZAPIER_TOKEN" -d '{"instructions": "Send a message saying hello to the #general channel"}' | jq .lockedguesschoose_fromignored/tmp/zapier_request.json{
"instructions": "Send an email about the weekly report",
"params": {
"to": {
"mode": "locked",
"value": "team@example.com"
},
"subject": {
"mode": "locked",
"value": "Weekly Report"
}
}
}curl -s -X POST "https://actions.zapier.com/api/v2/ai-actions/ACTION_ID/execute/" --header "Content-Type: application/json" --header "x-api-key: $ZAPIER_TOKEN" -d @/tmp/zapier_request.json | jq .preview_only=truecurl -s -X POST "https://actions.zapier.com/api/v2/ai-actions/ACTION_ID/execute/?preview_only=true" --header "Content-Type: application/json" --header "x-api-key: $ZAPIER_TOKEN" -d '{"instructions": "Create a new row in the Sales spreadsheet with name John and amount 500"}' | jq .ACTION_IDcurl -s -X POST "https://actions.zapier.com/api/v1/dynamic/exposed/ACTION_ID/execute/" --header "Content-Type: application/json" --header "x-api-key: $ZAPIER_TOKEN" -d '{"instructions": "Send a Slack message to #dev saying deployment complete"}' | jq .instructionslockedguesschoose_frompreview_only=truestatussuccesserroremptypreview