Secrets & Environment Variables
Store sensitive values that your flows can reference securely. Secrets are encrypted at rest with AES-256.
| Name | Type | Created | Last Used | Referenced By | Actions |
|---|---|---|---|---|---|
SLACK_WEBHOOK_URL | Webhook | Mar 15 | 2 hours ago | Product MonitorAlerts | |
GOOGLE_SHEETS_TOKEN | OAuth Token | Mar 10 | 1 day ago | Job Scraper | |
SMTP_PASSWORD | Password | Mar 1 | 3 days ago | Email Alerts | |
PROXY_AUTH_KEY | API Key | Feb 28 | 1 hour ago | All flows |
Usage in Flows
Reference secrets in your flow steps using the double-brace syntax
Reference syntax:
{{secrets.SLACK_WEBHOOK_URL}}Example: Send Slack notification in a flow step
{
"action": "webhook",
"url": "{{secrets.SLACK_WEBHOOK_URL}}",
"method": "POST",
"body": {
"text": "New data extracted: {{results.count}} items"
}
}