Use this file to discover all available pages before exploring further.
The Datastore tab allows you to manage variables and encrypted secrets used by your project’s workflows. It is split into two tabs — Datastore for plain-text variables and Vault (Encrypted) for sensitive secrets.
Datastore
Vault (Encrypted)
The Datastore tab stores non-sensitive plain-text variables used by workflows. Values are scoped to a specific level using the Scope dropdown.
The key name used to reference this variable in workflows.
Type
The data type of the value: String, Number, Boolean, or Object.
Value
The value to store.
Select Add to save the variable.
The Vault (Encrypted) tab stores sensitive secrets using Fernet encryption (AES-128-CBC). Secrets stored here can be referenced in workflows and integrations without exposing their raw values.Typical values stored in the Vault include API keys, authentication tokens, passwords, certificates, and external service credentials.
The key name used to reference this secret in workflows.
Type
The data type of the value: String, Number, Boolean, or Object.
Value
The secret value to encrypt and store.
Select Add to save the secret.
Vault values are encrypted at rest. Once saved, the raw value cannot be retrieved — only replaced. Store a secure copy of any secrets before saving them here.
When a workflow retrieves a variable, the system resolves values according to the following priority:Run → Flow → ProjectThe most specific scope takes precedence. If the same variable exists at both the Flow and Project level, the Flow-level value will be used.Example:
Scope
Variable
Value
Project
API_URL
https://api.company.com
Flow
API_URL
https://sandbox.api.company.com
When the flow runs, it will use the Flow-level value since it overrides the Project-level value.