← Reply.io + Stripe integrations

Update a Customer with Stripe API on New Contact Opted Out (Instant) from Reply.io API

Pipedream makes it easy to connect APIs for Stripe, Reply.io and 2,500+ other apps remarkably fast.

Trigger workflow on
New Contact Opted Out (Instant) from the Reply.io API
Next, do this
Update a Customer with the Stripe 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 Reply.io trigger and Stripe 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 Opted Out (Instant) trigger
    1. Connect your Reply.io account
  3. Configure the Update a Customer action
    1. Connect your Stripe account
    2. Select a Customer ID
    3. Optional- Configure Name
    4. Optional- Configure Email
    5. Optional- Configure Phone
    6. Optional- Configure Description
    7. Optional- Configure Address - City
    8. Optional- Configure Address - Country
    9. Optional- Configure Address - Line 1
    10. Optional- Configure Shipping - Address - Line 2
    11. Optional- Configure Address - Postal Code
    12. Optional- Configure Shipping - Address - State
    13. Optional- Configure Metadata
  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 person opts out. [See the docs here](https://apidocs.reply.io/#84947c50-24b8-411c-bb71-d6cddf49fc16)
Version:0.0.1
Key:reply_io-new-contact-opted-out

Reply.io Overview

The Reply.io API on Pipedream allows users to automate their sales engagement and follow-up processes efficiently. Leveraging this API, you can streamline communication by triggering personalized emails, managing contacts, and analyzing the performance of sales campaigns. Using Pipedream's serverless platform, you can create workflows that perform actions in Reply.io in response to events from other apps, schedule tasks, and process data in real-time.

Trigger Code

import common from "../common/base.mjs";

export default {
  ...common,
  key: "reply_io-new-contact-opted-out",
  name: "New Contact Opted Out (Instant)",
  description: "Emit new event when a person opts out. [See the docs here](https://apidocs.reply.io/#84947c50-24b8-411c-bb71-d6cddf49fc16)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    getEventType() {
      return "contact_opted_out";
    },
  },
};

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
Reply.ioreplyappThis component uses the Reply.io app.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.

Trigger Authentication

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

To retrieve your API key,

  • Navigate to your Reply.io account and sign in
  • Go to Settings > API Key

About Reply.io

Reply is a sales engagement platform that automates email search, LinkedIn outreach, personal emails, SMS and WhatsApp messages, calls, and tasks.

Action

Description:Update a customer. [See the documentation](https://stripe.com/docs/api/customers/update).
Version:0.1.2
Key:stripe-update-customer

Stripe Overview

The Stripe API is a powerful tool for managing online payments, subscriptions, and invoices. With Pipedream, you can leverage this API to automate payment processing, monitor transactions, and sync billing data with other services. Pipedream's no-code platform allows for quick integration and creation of serverless workflows that react to Stripe events in real-time. For instance, you might automatically update customer records, send personalized emails after successful payments, or escalate failed transactions to your support team.

Action Code

import utils from "../../common/utils.mjs";
import app from "../../stripe.app.mjs";

export default {
  key: "stripe-update-customer",
  name: "Update a Customer",
  type: "action",
  version: "0.1.2",
  description: "Update a customer. [See the documentation](https://stripe.com/docs/api/customers/update).",
  props: {
    app,
    customer: {
      propDefinition: [
        app,
        "customer",
      ],
      optional: false,
    },
    name: {
      description: "The customer's full name or business name.",
      propDefinition: [
        app,
        "name",
      ],
    },
    email: {
      propDefinition: [
        app,
        "email",
      ],
    },
    phone: {
      propDefinition: [
        app,
        "phone",
      ],
    },
    description: {
      propDefinition: [
        app,
        "description",
      ],
    },
    addressCity: {
      propDefinition: [
        app,
        "addressCity",
      ],
    },
    addressCountry: {
      propDefinition: [
        app,
        "addressCountry",
      ],
    },
    addressLine1: {
      propDefinition: [
        app,
        "addressLine1",
      ],
    },
    addressLine2: {
      propDefinition: [
        app,
        "addressLine2",
      ],
    },
    addressPostalCode: {
      propDefinition: [
        app,
        "addressPostalCode",
      ],
    },
    addressState: {
      propDefinition: [
        app,
        "addressState",
      ],
    },
    metadata: {
      propDefinition: [
        app,
        "metadata",
      ],
    },
  },
  methods: {
    getOtherParams() {
      const {
        addressCity,
        addressCountry,
        addressLine1,
        addressLine2,
        addressPostalCode,
        addressState,
      } = this;

      const hasAddressData = addressCity
        || addressCountry
        || addressLine1
        || addressLine2
        || addressPostalCode
        || addressState;

      return {
        ...(hasAddressData && {
          address: {
            city: addressCity,
            country: addressCountry,
            line1: addressLine1,
            line2: addressLine2,
            postal_code: addressPostalCode,
            state: addressState,
          },
        }),
      };
    },
  },
  async run({ $ }) {
    const {
      app,
      customer,
      name,
      email,
      phone,
      description,
      metadata,
      getOtherParams,
    } = this;

    const resp = await app.sdk().customers.update(customer, {
      name,
      email,
      phone,
      description,
      metadata: utils.parseJson(metadata),
      ...getOtherParams(),
    });
    $.export("$summary", `Successfully updated the customer, \`${resp.id}\`.`);
    return resp;
  },
};

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
StripeappappThis component uses the Stripe app.
Customer IDcustomerstringSelect a value from the drop down menu.
Namenamestring

The customer's full name or business name.

Emailemailstring

Customer's email address. It's displayed alongside the customer in your dashboard and can be useful for searching and tracking. This may be up to 512 characters.

Phonephonestring

The customer's phone number. This field is required when creating a new customer. If you do not provide a phone number, the customer will be created with the phone number of the connected account.

Descriptiondescriptionstring

An arbitrary string that you can attach to a the object eg. customer, invoice, etc.

Address - CityaddressCitystring

City, district, suburb, town, or village.

Address - CountryaddressCountrystring

Two-letter country code (ISO 3166-1 alpha-2).

Address - Line 1addressLine1string

Address line 1 (e.g., street, PO Box, or company name).

Shipping - Address - Line 2addressLine2string

Address line 2 (e.g., apartment, suite, unit, or building).

Address - Postal CodeaddressPostalCodestring

ZIP or postal code.

Shipping - Address - StateaddressStatestring

State, county, province, or region.

Metadatametadataobject

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to metadata.

Action Authentication

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

About Stripe

Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.

More Ways to Connect Stripe + Reply.io

Create or Update Contact and Push to Campaign with Reply.io API on New Custom Webhook Events from Stripe API
Stripe + Reply.io
 
Try it
Create or Update Contact with Reply.io API on New Custom Webhook Events from Stripe API
Stripe + Reply.io
 
Try it
Mark Contact as Finished with Reply.io API on New Custom Webhook Events from Stripe API
Stripe + Reply.io
 
Try it
Mark Contact as Replied with Reply.io API on New Custom Webhook Events from Stripe API
Stripe + Reply.io
 
Try it
Remove Contact From Campaign with Reply.io API on New Custom Webhook Events from Stripe API
Stripe + Reply.io
 
Try it
New Contact Added from the Reply.io API

Emit new event when a new contact is added. See the docs here

 
Try it
New Contact Opted Out (Instant) from the Reply.io API

Emit new event when a person opts out. See the docs here

 
Try it
New Email Opened (Instant) from the Reply.io API

Emit new event when a person opens your email. See the docs here

 
Try it
New Email Replied (Instant) from the Reply.io API

Emit new event when a prospect replies to an email. See the docs here

 
Try it
New Email Sent (Instant) from the Reply.io API

Emit new event when a new email is sent (first step or follow-up). See the docs here

 
Try it
Create or Update Contact with the Reply.io API

Create a new contact or update if they already exist. See the docs here

 
Try it
Create or Update Contact and Push to Campaign with the Reply.io API

Create a new contact, or update if they already exist, and push contact to the selected campaign. See the docs here

 
Try it
Mark Contact as Finished with the Reply.io API

Mark a contact as finished in all campaigns by their email address. See the docs here

 
Try it
Mark Contact as Replied with the Reply.io API

Mark a contact as replied in all campaigns by their email address. See the docs here

 
Try it
Remove Contact From Campaign with the Reply.io API

Remove an existing contact from the selected campaign. See the docs here

 
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.