← Ticket Tailor + Stripe integrations

Create a Customer with Stripe API on New Action (Instant) from Ticket Tailor API

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

Trigger workflow on
New Action (Instant) from the Ticket Tailor API
Next, do this
Create 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 Ticket Tailor 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 Action (Instant) trigger
    1. Connect your Ticket Tailor account
    2. Optional- Configure Shared Secret
  3. Configure the Create a Customer action
    1. Connect your Stripe account
    2. Optional- Configure Name
    3. Optional- Configure Description
    4. Optional- Configure Email
    5. Optional- Configure Address - City
    6. Optional- Configure Address - Country
    7. Optional- Configure Address - Line 1
    8. Optional- Configure Shipping - Address - Line 2
    9. Optional- Configure Address - Postal Code
    10. Optional- Configure Shipping - Address - State
    11. Optional- Configure Metadata
    12. Optional- Select a Payment Method Type
    13. Optional- Select a Payment Method
    14. Optional- Configure Phone
    15. Optional- Configure Shipping - Address - City
    16. Optional- Configure Shipping - Address - Country
    17. Optional- Configure Shipping - Address - Line 1
    18. Optional- Configure Shipping - Address - Line 2
    19. Optional- Configure Shipping - Address - Postal Code
    20. Optional- Configure Shipping - Address - State
    21. Optional- Configure Shipping - Name
    22. Optional- Configure Shipping - Phone
    23. Optional- Configure Tax - IP Address
    24. Optional- Select a Tax - Validate Location
    25. Optional- Configure Balance
    26. Optional- Select a Cash Balance Settings - Reconciliation Mode
    27. Optional- Configure Invoice Prefix
    28. Optional- Configure Invoice Settings - Custom Fields
    29. Optional- Configure Invoice Settings - Default Payment Method
    30. Optional- Select a Invoice Settings - Rendering Options - Amount Tax Display
    31. Optional- Configure Next Invoice Sequence
    32. Optional- Configure Preferred Locales
    33. Optional- Configure Source
    34. Optional- Select a Tax Exempt
    35. Optional- Configure Tax ID Data
    36. Optional- Configure Test Clock
  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 new action occurs. You can use this source to handle one of the available options in Ticket Tailor. See how to configure the webhook [here](https://developers.tickettailor.com/#configuration)
Version:0.0.1
Key:ticket_tailor-new-action

Ticket Tailor Overview

The Ticket Tailor API lets you tap into your event management toolkit, giving you the power to automate tasks like syncing attendee lists, sending custom emails after ticket purchase, and monitoring real-time event metrics. Leveraging Pipedream's capabilities, you can build workflows that respond to events in Ticket Tailor, such as new bookings, and connect these triggers to countless other apps to streamline your event management process and enhance attendee experience.

Trigger Code

import app from "../../ticket_tailor.app.mjs";
import crypto from "crypto";

export default {
  type: "source",
  dedupe: "unique",
  key: "ticket_tailor-new-action",
  name: "New Action (Instant)",
  description: "Emit new event when a new action occurs. You can use this source to handle one of the available options in Ticket Tailor. See how to configure the webhook [here](https://developers.tickettailor.com/#configuration)",
  version: "0.0.1",
  props: {
    app,
    http: "$.interface.http",
    sharedSecret: {
      type: "string",
      label: "Shared Secret",
      description: "The shared secret you configured in the webhook. We highly recommend you to use a secret key to prevent unauthorized access to your webhook. You can find your signing secret [here](https://app.tickettailor.com/box-office/webhooks)",
      optional: true,
    },
  },
  methods: {
    emit(event) {
      this.$emit(event, {
        id: event.id,
        summary: `${event.event} - ${event.payload?.name || event.id}`,
        ts: event.created_at || Date.now(),
      });
    },
    getSignature(event) {
      const signature = event.headers["tickettailor-webhook-signature"];
      return signature.split(",").reduce((acc, currentValue) => {
        const [
          key,
          value,
        ] = currentValue.split("=");
        acc[key] = value;
        return acc;
      }, {});
    },
    checkHmac(bodyRaw, timestamp, hmac) {
      if (!this.sharedSecret || this.sharedSecret === "") {
        console.log("No shared secret configured. Skipping HMAC check.");
        return;
      }

      const data = timestamp + bodyRaw;
      const expectedSignature = crypto.createHmac("sha256", this.sharedSecret)
        .update(data, "utf8")
        .digest("hex");

      if (hmac !== expectedSignature) {
        throw new Error("Invalid HMAC Signature, connection aborted.");
      }
    },
    checkTolerance(timestamp) {
      const fiveMinutes = 300000;
      const tolerance = fiveMinutes;
      const timestampMilliseconds = Number(timestamp) * 1000;

      if (timestampMilliseconds < Date.now() - tolerance) {
        throw new Error("Invalid Timestamp Signature. The signature's timestamp is outside of the tolerance zone.");
      }
    },
  },
  async run(event) {
    const {
      t,
      v1,
    } = this.getSignature(event);
    this.checkHmac(event.bodyRaw, t, v1);
    this.checkTolerance(t);
    this.emit(event.body);
  },
};

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
Ticket TailorappappThis component uses the Ticket Tailor 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.
Shared SecretsharedSecretstring

The shared secret you configured in the webhook. We highly recommend you to use a secret key to prevent unauthorized access to your webhook. You can find your signing secret here

Trigger Authentication

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

To retrieve your API key,

  • Navigate to your Ticket Tailor account and sign in
  • Go to “Settings” > “Manage” > “API”

About Ticket Tailor

Whether it’s your first event ever, or your biggest event yet, we make it simple to sell tickets online.

Action

Description:Create a customer. [See the documentation](https://stripe.com/docs/api/customers/create).
Version:0.1.2
Key:stripe-create-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 app from "../../stripe.app.mjs";
import utils from "../../common/utils.mjs";

export default {
  key: "stripe-create-customer",
  name: "Create a Customer",
  type: "action",
  version: "0.1.2",
  description: "Create a customer. [See the documentation](https://stripe.com/docs/api/customers/create).",
  props: {
    app,
    name: {
      description: "The customer's full name or business name.",
      propDefinition: [
        app,
        "name",
      ],
    },
    description: {
      propDefinition: [
        app,
        "description",
      ],
    },
    email: {
      propDefinition: [
        app,
        "email",
      ],
    },
    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",
      ],
    },
    paymentMethodType: {
      type: "string",
      label: "Payment Method Type",
      description: "The type of payment method to create",
      propDefinition: [
        app,
        "paymentMethodTypes",
      ],
    },
    paymentMethod: {
      propDefinition: [
        app,
        "paymentMethod",
        ({ paymentMethodType }) => ({
          type: paymentMethodType,
        }),
      ],
    },
    phone: {
      propDefinition: [
        app,
        "phone",
      ],
    },
    shippingAddressCity: {
      label: "Shipping - Address - City",
      propDefinition: [
        app,
        "addressCity",
      ],
    },
    shippingAddressCountry: {
      label: "Shipping - Address - Country",
      propDefinition: [
        app,
        "addressCountry",
      ],
    },
    shippingAddressLine1: {
      label: "Shipping - Address - Line 1",
      propDefinition: [
        app,
        "addressLine1",
      ],
    },
    shippingAddressLine2: {
      label: "Shipping - Address - Line 2",
      propDefinition: [
        app,
        "addressLine2",
      ],
    },
    shippingAddressPostalCode: {
      label: "Shipping - Address - Postal Code",
      propDefinition: [
        app,
        "addressPostalCode",
      ],
    },
    shippingAddressState: {
      label: "Shipping - Address - State",
      propDefinition: [
        app,
        "addressState",
      ],
    },
    shippingName: {
      propDefinition: [
        app,
        "shippingName",
      ],
    },
    shippingPhone: {
      propDefinition: [
        app,
        "shippingPhone",
      ],
    },
    taxIpAddress: {
      type: "string",
      label: "Tax - IP Address",
      description: "A recent IP address of the customer used for tax reporting and tax location inference. Stripe recommends updating the IP address when a new PaymentMethod is attached or the address field on the customer is updated. We recommend against updating this field more frequently since it could result in unexpected tax location/reporting outcomes.",
      optional: true,
    },
    taxValidateLocation: {
      type: "string",
      label: "Tax - Validate Location",
      description: "A flag that indicates when Stripe should validate the customer tax location. Defaults to deferred.",
      options: [
        "deferred",
        "immediately",
      ],
      optional: true,
    },
    balance: {
      type: "integer",
      label: "Balance",
      description: "An integer amount in cents that represents the customer's current balance, which affect the customer's future invoices. A negative amount represents a credit that decreases the amount due on an invoice; a positive amount increases the amount due on an invoice.",
      optional: true,
    },
    cashBalanceSettingsReconciliationMode: {
      type: "string",
      label: "Cash Balance Settings - Reconciliation Mode",
      description: "Controls how funds transferred by the customer are applied to payment intents and invoices. Valid options are automatic, manual, or merchant_default. For more information about these reconciliation modes, see Reconciliation.",
      options: [
        "automatic",
        "manual",
        "merchant_default",
      ],
      optional: true,
    },
    invoicePrefix: {
      type: "string",
      label: "Invoice Prefix",
      description: "The prefix for the customer used to generate unique invoice numbers. Must be 3–12 uppercase letters or numbers.",
      optional: true,
    },
    invoiceSettingsCustomFields: {
      type: "string[]",
      label: "Invoice Settings - Custom Fields",
      description: "The list of up to 4 default custom fields to be displayed on invoices for this customer. When updating, pass an empty string to remove previously-defined fields.",
      optional: true,
    },
    invoiceSettingsDefaultPaymentMethod: {
      type: "string",
      label: "Invoice Settings - Default Payment Method",
      description: "ID of a payment method that's attached to the customer, to be used as the customer's default payment method for subscriptions and invoices.",
      optional: true,
    },
    invoiceSettingsRenderingOptionsAmountTaxDisplay: {
      type: "string",
      label: "Invoice Settings - Rendering Options - Amount Tax Display",
      description: "How line-item prices and amounts will be displayed with respect to tax on invoice PDFs. One of exclude_tax or include_inclusive_tax. include_inclusive_tax will include inclusive tax (and exclude exclusive tax) in invoice PDF amounts. exclude_tax will exclude all tax (inclusive and exclusive alike) from invoice PDF amounts.",
      options: [
        "exclude_tax",
        "include_inclusive_tax",
      ],
      optional: true,
    },
    nextInvoiceSequence: {
      type: "integer",
      label: "Next Invoice Sequence",
      description: "The sequence to be used on the customer's next invoice. Defaults to 1.",
      optional: true,
      default: 1,
    },
    preferredLocales: {
      type: "string[]",
      label: "Preferred Locales",
      description: "Customer's preferred languages, ordered by preference.",
      optional: true,
    },
    source: {
      type: "string",
      label: "Source",
      description: "When using payment sources created via the Token or Sources APIs, passing source will create a new source object, make it the new customer default source, and delete the old customer default if one exists. If you want to add additional sources instead of replacing the existing default, use the card creation API. Whenever you attach a card to a customer, Stripe will automatically validate the card.",
      optional: true,
    },
    taxExempt: {
      type: "string",
      label: "Tax Exempt",
      description: "The customer's tax exemption. One of none, exempt, or reverse.",
      options: [
        "none",
        "exempt",
        "reverse",
      ],
      optional: true,
    },
    taxIdData: {
      type: "string[]",
      label: "Tax ID Data",
      description: "The customer's tax IDs. [See the documentation](https://docs.stripe.com/api/customers/create#create_customer-tax_id_data).",
      optional: true,
    },
    testClock: {
      type: "string",
      label: "Test Clock",
      description: "ID of the test clock to attach to the customer.",
      optional: true,
    },
  },
  methods: {
    getOtherParams() {
      const {
        addressCity,
        addressCountry,
        addressLine1,
        addressLine2,
        addressPostalCode,
        addressState,
        shippingAddressCity,
        shippingAddressCountry,
        shippingAddressLine1,
        shippingAddressLine2,
        shippingAddressPostalCode,
        shippingAddressState,
        shippingName,
        shippingPhone,
        taxIpAddress,
        taxValidateLocation,
        cashBalanceSettingsReconciliationMode,
        invoiceSettingsCustomFields,
        invoiceSettingsDefaultPaymentMethod,
        invoiceSettingsRenderingOptionsAmountTaxDisplay,
      } = this;

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

      const hasShippingData = shippingAddressCity
        || shippingAddressCountry
        || shippingAddressLine1
        || shippingAddressLine2
        || shippingAddressPostalCode
        || shippingAddressState
        || shippingName
        || shippingPhone;

      const hasTaxData = taxIpAddress || taxValidateLocation;

      const hasInvoiceSettings = invoiceSettingsCustomFields
        || invoiceSettingsDefaultPaymentMethod
        || invoiceSettingsRenderingOptionsAmountTaxDisplay;

      return {
        ...(hasAddressData && {
          address: {
            city: addressCity,
            country: addressCountry,
            line1: addressLine1,
            line2: addressLine2,
            postal_code: addressPostalCode,
            state: addressState,
          },
        }),
        ...(hasShippingData && {
          shipping: {
            address: {
              city: shippingAddressCity,
              country: shippingAddressCountry,
              line1: shippingAddressLine1,
              line2: shippingAddressLine2,
              postal_code: shippingAddressPostalCode,
              state: shippingAddressState,
            },
            name: shippingName,
            phone: shippingPhone,
          },
        }),
        ...(hasTaxData && {
          tax: {
            ip_address: taxIpAddress,
            validate_location: taxValidateLocation,
          },
        }),
        ...(cashBalanceSettingsReconciliationMode && {
          cash_balance: {
            settings: {
              reconciliation_mode: cashBalanceSettingsReconciliationMode,
            },
          },
        }),
        ...(hasInvoiceSettings && {
          invoice_settings: {
            custom_fields: invoiceSettingsCustomFields,
            default_payment_method: invoiceSettingsDefaultPaymentMethod,
            rendering_options: {
              amount_tax_display: invoiceSettingsRenderingOptionsAmountTaxDisplay,
            },
          },
        }),
      };
    },
  },
  async run({ $ }) {
    const {
      app,
      name,
      description,
      email,
      metadata,
      paymentMethod,
      phone,
      balance,
      invoicePrefix,
      nextInvoiceSequence,
      preferredLocales,
      source,
      taxExempt,
      taxIdData,
      testClock,
      getOtherParams,
    } = this;

    const resp = await app.sdk().customers.create({
      name,
      description,
      email,
      metadata,
      payment_method: paymentMethod,
      phone,
      balance,
      invoice_prefix: invoicePrefix,
      next_invoice_sequence: nextInvoiceSequence,
      preferred_locales: preferredLocales,
      source,
      tax_exempt: taxExempt,
      tax_id_data: utils.parseArray(taxIdData),
      test_clock: testClock,
      ...getOtherParams(),
    });
    $.export("$summary", `Successfully created a new customer with ID \`${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.
Namenamestring

The customer's full name or business name.

Descriptiondescriptionstring

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

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.

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.

Payment Method TypepaymentMethodTypestringSelect a value from the drop down menu:acss_debitalipayau_becs_debitbancontactcardcard_presentepsgiropayidealinterac_presentp24sepa_debitsofort
Payment MethodpaymentMethodstringSelect a value from the drop down menu.
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.

Shipping - Address - CityshippingAddressCitystring

City, district, suburb, town, or village.

Shipping - Address - CountryshippingAddressCountrystring

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

Shipping - Address - Line 1shippingAddressLine1string

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

Shipping - Address - Line 2shippingAddressLine2string

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

Shipping - Address - Postal CodeshippingAddressPostalCodestring

ZIP or postal code.

Shipping - Address - StateshippingAddressStatestring

State, county, province, or region.

Shipping - NameshippingNamestring

Recipient name.

Shipping - PhoneshippingPhonestring

Recipient phone (including extension).

Tax - IP AddresstaxIpAddressstring

A recent IP address of the customer used for tax reporting and tax location inference. Stripe recommends updating the IP address when a new PaymentMethod is attached or the address field on the customer is updated. We recommend against updating this field more frequently since it could result in unexpected tax location/reporting outcomes.

Tax - Validate LocationtaxValidateLocationstringSelect a value from the drop down menu:deferredimmediately
Balancebalanceinteger

An integer amount in cents that represents the customer's current balance, which affect the customer's future invoices. A negative amount represents a credit that decreases the amount due on an invoice; a positive amount increases the amount due on an invoice.

Cash Balance Settings - Reconciliation ModecashBalanceSettingsReconciliationModestringSelect a value from the drop down menu:automaticmanualmerchant_default
Invoice PrefixinvoicePrefixstring

The prefix for the customer used to generate unique invoice numbers. Must be 3–12 uppercase letters or numbers.

Invoice Settings - Custom FieldsinvoiceSettingsCustomFieldsstring[]

The list of up to 4 default custom fields to be displayed on invoices for this customer. When updating, pass an empty string to remove previously-defined fields.

Invoice Settings - Default Payment MethodinvoiceSettingsDefaultPaymentMethodstring

ID of a payment method that's attached to the customer, to be used as the customer's default payment method for subscriptions and invoices.

Invoice Settings - Rendering Options - Amount Tax DisplayinvoiceSettingsRenderingOptionsAmountTaxDisplaystringSelect a value from the drop down menu:exclude_taxinclude_inclusive_tax
Next Invoice SequencenextInvoiceSequenceinteger

The sequence to be used on the customer's next invoice. Defaults to 1.

Preferred LocalespreferredLocalesstring[]

Customer's preferred languages, ordered by preference.

Sourcesourcestring

When using payment sources created via the Token or Sources APIs, passing source will create a new source object, make it the new customer default source, and delete the old customer default if one exists. If you want to add additional sources instead of replacing the existing default, use the card creation API. Whenever you attach a card to a customer, Stripe will automatically validate the card.

Tax ExempttaxExemptstringSelect a value from the drop down menu:noneexemptreverse
Tax ID DatataxIdDatastring[]

The customer's tax IDs. See the documentation

Test ClocktestClockstring

ID of the test clock to attach to the customer.

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 + Ticket Tailor

Cancel Or Reverse a Payout with Stripe API on New Action (Instant) from Ticket Tailor API
Ticket Tailor + Stripe
 
Try it
Cancel a Payment Intent with Stripe API on New Action (Instant) from Ticket Tailor API
Ticket Tailor + Stripe
 
Try it
Capture a Payment Intent with Stripe API on New Action (Instant) from Ticket Tailor API
Ticket Tailor + Stripe
 
Try it
Confirm a Payment Intent with Stripe API on New Action (Instant) from Ticket Tailor API
Ticket Tailor + Stripe
 
Try it
Create Invoice Line Item with Stripe API on New Action (Instant) from Ticket Tailor API
Ticket Tailor + Stripe
 
Try it
New Action (Instant) from the Ticket Tailor API

Emit new event when a new action occurs. You can use this source to handle one of the available options in Ticket Tailor. See how to configure the webhook here

 
Try it
New Custom Webhook Events from the Stripe API

Emit new event on each webhook event

 
Try it
Canceled Subscription from the Stripe API

Emit new event for each new canceled subscription

 
Try it
New Abandoned Cart from the Stripe API

Emit new event when a customer abandons their cart.

 
Try it
New Customer from the Stripe API

Emit new event for each new customer

 
Try it
Cancel A Payment Intent with the Stripe API

Cancel a PaymentIntent. See the documentation

 
Try it
Cancel Or Reverse A Payout with the Stripe API

Cancel a pending payout or reverse a paid payout. See the documentation here and here

 
Try it
Capture a Payment Intent with the Stripe API

Capture the funds of an existing uncaptured payment intent. See the documentation

 
Try it
Confirm A Payment Intent with the Stripe API

Confirm that your customer intends to pay with current or provided payment method. See the documentation

 
Try it
Create a Customer with the Stripe API

Create a customer. See the documentation

 
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.