← Flexmail + Data Stores integrations

Update Record Expiration with Data Stores API on New Contact Updated from Flexmail API

Pipedream makes it easy to connect APIs for Data Stores, Flexmail and 2,500+ other apps remarkably fast.

Trigger workflow on
New Contact Updated from the Flexmail API
Next, do this
Update Record Expiration with the Data Stores API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Flexmail trigger and Data Stores action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Contact Updated trigger
    1. Connect your Flexmail account
    2. Configure timer
  3. Configure the Update Record Expiration action
    1. Connect your Data Stores account
    2. Configure Data Store
    3. Select a Key
    4. Select a Expiration Type
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a contact is updated in Flexmail
Version:0.0.1
Key:flexmail-new-contact-updated

Flexmail Overview

Flexmail API offers a way to automate your email marketing campaigns by allowing you to manage contacts, send out emails, and track results. With Pipedream's ability to integrate with hundreds of services, you can set up complex workflows that respond to events from various apps by updating contact lists, sending personalized content, or triggering sequences of marketing actions based on user behavior or data changes.

Trigger Code

import common from "../common/base.mjs";
import md5 from "md5";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  key: "flexmail-new-contact-updated",
  name: "New Contact Updated",
  description: "Emit new event when a contact is updated in Flexmail",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    _getContacts() {
      return this.db.get("contacts") || {};
    },
    _setContacts(contacts) {
      this.db.set("contacts", contacts);
    },
    getRelevantContacts(contacts) {
      const existingContacts = this._getContacts();
      const relevantContacts = [];
      const newContacts = {};
      for (const contact of contacts) {
        const hash = md5(JSON.stringify(contact));
        if (existingContacts[contact.id] && existingContacts[contact.id] != hash) {
          relevantContacts.push(contact);
        }
        newContacts[contact.id] = hash;
      }
      this._setContacts(newContacts);
      return relevantContacts;
    },
    getSummary(id) {
      return `Contact Updated ${id}`;
    },
  },
  sampleEmit,
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
FlexmailflexmailappThis component uses the Flexmail app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer

Trigger Authentication

Flexmail uses API keys for authentication. When you connect your Flexmail account, Pipedream securely stores the keys so you can easily authenticate to Flexmail APIs in both code and no-code steps.

About Flexmail

Create captivating email campaigns with the most complete and reliable platform.

Action

Description:Update the expiration time for a record in your [Pipedream Data Store](https://pipedream.com/data-stores/).
Version:0.0.1
Key:data_stores-update-ttl

Data Stores Overview

Data Stores are a key-value store that allow you to persist state and share data across workflows. You can perform CRUD operations, enabling dynamic data management within your serverless architecture. Use it to save results from API calls, user inputs, or interim data; then read, update, or enrich this data in subsequent steps or workflows. Data Stores simplify stateful logic and cross-workflow communication, making them ideal for tracking process statuses, aggregating metrics, or serving as a simple configuration store.

Action Code

import app from "../../data_stores.app.mjs";

export default {
  key: "data_stores-update-ttl",
  name: "Update Record Expiration",
  description: "Update the expiration time for a record in your [Pipedream Data Store](https://pipedream.com/data-stores/).",
  version: "0.0.1",
  type: "action",
  props: {
    app,
    dataStore: {
      propDefinition: [
        app,
        "dataStore",
      ],
    },
    key: {
      propDefinition: [
        app,
        "key",
        ({ dataStore }) => ({
          dataStore,
        }),
      ],
      description: "Select the key for the record you'd like to update the expiration time.",
    },
    ttlOption: {
      type: "string",
      label: "Expiration Type",
      description: "Choose a common expiration time or specify a custom value",
      options: [
        {
          label: "Custom value",
          value: "custom",
        },
        {
          label: "No expiration (remove expiry)",
          value: "0",
        },
        {
          label: "1 hour",
          value: "3600",
        },
        {
          label: "1 day",
          value: "86400",
        },
        {
          label: "1 week",
          value: "604800",
        },
        {
          label: "30 days",
          value: "2592000",
        },
        {
          label: "90 days",
          value: "7776000",
        },
        {
          label: "1 year",
          value: "31536000",
        },
      ],
      reloadProps: true,
    },
  },
  async additionalProps() {
    const props = {};
    if (this.ttlOption === "custom") {
      props.ttl = {
        type: "integer",
        label: "Custom TTL (seconds)",
        description: "The number of seconds until this record expires and is automatically deleted. Use 0 to remove expiration.",
        min: 0,
        max: 31536000, // 1 year (safe upper limit)
      };
    }
    return props;
  },
  async run({ $ }) {
    const {
      key, ttlOption, ttl,
    } = this;

    // Determine TTL value to use
    const ttlValue = ttlOption === "custom"
      ? ttl
      : parseInt(ttlOption, 10);

    if (!await this.dataStore.has(key)) {
      $.export("$summary", `No record found with key \`${key}\`.`);
      return {
        success: false,
        message: `No record found with key ${key}`,
      };
    }

    if (ttlValue === 0) {
      // Remove expiration
      await this.dataStore.setTtl(key, null);
      $.export("$summary", `Successfully removed expiration for key \`${key}\`.`);
      return {
        success: true,
        key,
        ttl: null,
        message: "Expiration removed",
      };
    } else {
      // Update TTL
      await this.dataStore.setTtl(key, ttlValue);
      $.export("$summary", `Successfully updated expiration for key \`${key}\` (expires in ${this.app.formatTtl(ttlValue)}).`);
      return {
        success: true,
        key,
        ttl: ttlValue,
        ttlFormatted: this.app.formatTtl(ttlValue),
      };
    }
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Data StoresappappThis component uses the Data Stores app.
Data StoredataStoredata_store

Select an existing Data Store or create a new one.

KeykeystringSelect a value from the drop down menu.
Expiration TypettlOptionstringSelect a value from the drop down menu:{ "label": "Custom value", "value": "custom" }{ "label": "No expiration (remove expiry)", "value": "0" }{ "label": "1 hour", "value": "3600" }{ "label": "1 day", "value": "86400" }{ "label": "1 week", "value": "604800" }{ "label": "30 days", "value": "2592000" }{ "label": "90 days", "value": "7776000" }{ "label": "1 year", "value": "31536000" }

Action Authentication

The Data Stores API does not require authentication.

About Data Stores

Use Pipedream Data Stores to manage state throughout your workflows.

More Ways to Connect Data Stores + Flexmail

Add or update multiple records with Data Stores API on New Contact Updated from Flexmail API
Flexmail + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Contact Updated from Flexmail API
Flexmail + Data Stores
 
Try it
Append to record with Data Stores API on New Contact Updated from Flexmail API
Flexmail + Data Stores
 
Try it
Delete All Records with Data Stores API on New Contact Updated from Flexmail API
Flexmail + Data Stores
 
Try it
Delete a single record with Data Stores API on New Contact Updated from Flexmail API
Flexmail + Data Stores
 
Try it
New Contact from the Flexmail API

Emit new event when a new contact is created

 
Try it
New Contact Updated from the Flexmail API

Emit new event when a contact is updated in Flexmail

 
Try it
New Unsubscribe from the Flexmail API

Emit new event when a contact unsubscribes.

 
Try it
Create or Update Contact with the Flexmail API

Creates or updates a contact based on email address within Flexmail. See the documentation

 
Try it
Subscribe Contact to Interest with the Flexmail API

Adds a contact to an interest area. See the documentation

 
Try it
Unsubscribe Contact with the Flexmail API

Performs unsubscribe operation for a contact. See the documentation

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store

 
Try it

Explore Other Apps

1
-
24
of
2,500+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce
Salesforce
Cloud-based customer relationship management (CRM) platform that helps businesses manage sales, marketing, customer support, and other business activities, ultimately aiming to improve customer relationships and streamline operations.
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.