Store and retrieve data across integration runs.
When to Use
- Persist data between runs
- Save API tokens/credentials
- Create lookup/reference tables
- Store files/blobs
- Implement stateful flows
Settings
Basic
- Description: Name this storage action
- Storage Type: Key-Value, JSON Document, Blob
- Operation: Get, Set, Delete, List
Key-Value
- Key: Identifier
- Value: Data to store
- Expiration: Optional TTL
JSON Document
- Document ID: Identifier
- Document: JSON data
- Path: JSONPath for specific extraction/update
Blob
- Blob ID: Identifier
- Content: File/binary data
- Content Type: MIME type
List
- Filter: Pattern to filter keys/IDs
- Max Items: Limit results
Tips
- Use consistent key naming
- Add timestamps for time-series data
- For changing data, use JSON Document with paths
- Set expirations for temp data
- Use for caching
- Storage is tenant-specific