LogoLogo
  • Docs
  • Connector Configuration
  • Knowledge Base
  • Changelog
  • Connector Configuration
  • ActiveCampaign
  • Airtable
  • Asana
  • AWS
    • AWS SNS
  • Azure Cognitive Services
  • Blackboard
  • CloudFlare
    • CloudFlare Lists
  • DeepAI
  • DocuSign
  • Dropbox
  • Facebook Business
  • Freshdesk
  • Google
  • Highrise
  • Hubspot
  • Imperva
  • Jira
  • Jotform
  • LinkedIn
  • Mailchimp
  • Microsoft
  • Microsoft Dynamics 365 CRM
  • Monday
  • Open AI
  • Pipedrive
  • Quickbooks
  • Redmine
  • Salesforce
  • Schoology
  • Screenshot API
  • ServiceNow
  • Shopify
  • Slack
  • Snowflake
  • Trello
  • Twilio
  • Twitter
  • Typeform
  • Utilities
    • AI
    • AppEvents
    • Controls
      • Condition
      • Counter
      • Digest
      • Each
      • Join
      • Join Each
      • On Start
      • Set Variable
      • Switch
    • Converters
      • Archive
      • CSV to HTML
      • CSV to JSON
      • CSV to XLSX
      • Data URI to File
      • HTML to CSV
      • HTML to JSON
      • HTML to XLSX
      • JSON to CSV
      • JSON to HTML
      • JSON to XLSX
      • XLSX to CSV
      • XLSX to HTML
      • XLSX to JSON
    • CSV
      • Add Column
      • Add Row
      • Add Rows
      • Create CSV
      • Delete Columns
      • Delete Rows
      • Export CSV
      • Get Cell
      • Get Row
      • Get Rows
      • Import CSV
      • Rename Column
      • Update Rows
    • Email
    • HTTP
      • Delete
      • Dynamic Webhook
      • GET
      • PATCH
      • POST
      • PUT
      • Response
      • Uptime
      • Webhook
    • Language
    • Tasks
      • Request Approval
      • Request Approval Email
    • Test
      • After All
      • Assert
      • Before All
      • Call Count
      • Join
      • Process E2E Results
      • Tick
    • Timers
      • Scheduler
      • Timer
      • Wait
    • Weather
    • XML
      • JSON to XML
      • Validate XML
      • XML to JSON
      • XPath
    • Storage
      • Clear
      • Find
      • Get
      • On Item Added
      • On Item Removed
      • On Item Updated
      • Remove
      • Save To File
      • Set
    • RSS
      • Get Feed
      • New Feed Item
    • FTP
      • Create Directory
      • Download File
      • Get File Info
      • New File
      • Remove Directory
      • List
      • Remove File
      • Rename File
      • Upload File
    • Forms
      • Form Action
      • Form Trigger
    • Filters
      • Contains
      • Equals
      • Greater Than
      • Identity
      • Is Not Empty
      • Less Than
      • Modulo
      • Not Equal
      • Range
    • Files
      • Archive File
      • Download File
      • Load File
      • Load File Lines
      • Remove File
      • Save File
  • Xero
  • Zendesk Chat
  • Zendesk Tickets
  • Zoho
Powered by GitBook
On this page
  • Overview
  • Usage
  • Notes

Was this helpful?

Export as PDF
  1. Utilities
  2. Storage

Set

Overview

The Set Storage Component stores a key-value pair in a specified storage location, enabling structured data persistence within workflows.

Usage

This component allows users to store data dynamically by assigning a value to a key in a designated storage space.

Input Ports

Port
Description

in

Receives the key-value pair to be stored.

Output Ports

Port
Description

out

Emits the stored key, old value (if any), new value, and timestamps.

Properties

Property
Type
Description

storeId

string

The ID of the storage space where the key-value pair will be stored.

Processing Logic

  1. Receives Key-Value Pair: Accepts an input with a key and its corresponding value.

  2. Stores Data: Saves the key-value pair in the specified storeId.

  3. Handles Updates:

    • If the key already exists, updates its value and retains the previous value.

    • If the key is new, creates a fresh entry.

  4. Emits Output: Sends the key, old value, new value, and timestamps to the out port.

Output Data Schema

Property
Type
Description

key

string

The key associated with the stored value.

oldValue

string

The previous value (if the key existed).

newValue

string

The newly stored value.

createdAt

string

Timestamp when the key-value pair was initially created.

updatedAt

string

Timestamp when the key-value pair was last updated.

Notes

  • Dynamic Data Storage: Supports both new entries and updates to existing keys.

  • Efficient Workflow Integration: Allows seamless data persistence for automation.

  • Timestamp Tracking: Keeps track of creation and update times for data integrity.

This component is essential for workflows that require structured data storage and retrieval within automated processes.

PreviousSave To FileNextRSS

Last updated 3 months ago

Was this helpful?