← HTTP / Webhook + Stripe integrations

Create a Customer with Stripe API on New Requests from HTTP / Webhook API

Pipedream makes it easy to connect APIs for Stripe, HTTP / Webhook and 2,700+ other apps remarkably fast.

Trigger workflow on
New Requests from the HTTP / Webhook 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 HTTP / Webhook 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 Requests trigger
    1. Optional- Configure Body Only
    2. Optional- Configure Response Status Code
    3. Optional- Configure Response Content-Type
    4. Optional- Configure Response Body
    5. Connect your HTTP / Webhook account
  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:Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.
Version:0.1.1
Key:http-new-requests

HTTP / Webhook Overview

Build, test, and send HTTP requests without code using your Pipedream workflows. The HTTP / Webhook action is a tool to build HTTP requests with a Postman-like graphical interface.

An interface for configuring an HTTP request within Pipedream's workflow system. The current selection is a GET request with fields for the request URL, authorization type (set to 'None' with a note explaining "This request does not use authorization"), parameters, headers (with a count of 1, though the detail is not visible), and body. Below the main configuration area is an option to "Include Response Headers," and a button labeled "Configure to test." The overall layout suggests a user-friendly, no-code approach to setting up custom HTTP requests.

Point and click HTTP requests

Define the target URL, HTTP verb, headers, query parameters, and payload body without writing custom code.

A screenshot of Pipedream's HTTP Request Configuration interface with a GET request type selected. The request URL is set to 'https://api.openai.com/v1/models'. The 'Auth' tab is highlighted, indicating that authentication is required for this request. In the headers section, there are two headers configured: 'User-Agent' is set to 'pipedream/1', and 'Authorization' is set to 'Bearer {{openai_api_key}}', showing how the OpenAI account's API key is dynamically inserted into the headers to handle authentication automatically.

Here's an example workflow that uses the HTTP / Webhook action to send an authenticated API request to OpenAI.

Focus on integrating, not authenticating

This action can also use your connected accounts with third-party APIs. Selecting an integrated app will automatically update the request’s headers to authenticate with the app properly, and even inject your token dynamically.

This GIF depicts the process of selecting an application within Pipedream's HTTP Request Builder. A user hovers the cursor over the 'Auth' tab and clicks on a dropdown menu labeled 'Authorization Type', then scrolls through a list of applications to choose from for authorization purposes. The interface provides a streamlined and intuitive method for users to authenticate their HTTP requests by selecting the relevant app in the configuration settings.

Pipedream integrates with thousands of APIs, but if you can’t find a Pipedream integration simply use Environment Variables in your request headers to authenticate with.

Compatible with no code actions or Node.js and Python

The HTTP/Webhook action exports HTTP response data for use in subsequent workflow steps, enabling easy data transformation, further API calls, database storage, and more.

Response data is available for both coded (Node.js, Python) and no-code steps within your workflow.

An image showing the Pipedream interface where the HTTP Webhook action has returned response data as a step export. The interface highlights a structured view of the returned data with collapsible sections. We can see 'steps.custom_request1' expanded to show 'return_value' which is an object containing a 'list'. Inside the list, an item 'data' is expanded to reveal an element with an 'id' of 'whisper-1', indicating a model created by and owned by 'openai-internal'. Options to 'Copy Path' and 'Copy Value' are available for easy access to the data points.

Trigger Code

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

// Core HTTP component
export default {
  key: "http-new-requests",
  name: "New Requests",
  description: "Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.",
  version: "0.1.1",
  type: "source",
  props: {
    httpInterface: {
      type: "$.interface.http",
      customResponse: true,
    },
    emitBodyOnly: {
      type: "boolean",
      label: "Body Only",
      description: "This source emits an event representing the full HTTP request by default. Select `true` to emit the body only.",
      optional: true,
      default: false,
    },
    resStatusCode: {
      type: "string",
      label: "Response Status Code",
      description: "The status code to return in the HTTP response",
      optional: true,
      default: "200",
    },
    resContentType: {
      type: "string",
      label: "Response Content-Type",
      description: "The `Content-Type` of the body returned in the HTTP response",
      optional: true,
      default: "application/json",
    },
    resBody: {
      type: "string",
      label: "Response Body",
      description: "The body to return in the HTTP response",
      optional: true,
      default: "{ \"success\": true }",
    },
    http,
  },
  async run(event) {
    const summary = `${event.method} ${event.path}`;

    this.httpInterface.respond({
      status: this.resStatusCode,
      body: this.resBody,
      headers: {
        "content-type": this.resContentType,
      },
    });

    if (this.emitBodyOnly) {
      this.$emit(event.body, {
        summary,
      });
    } else {
      this.$emit(event, {
        summary,
      });
    }
  },
};

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
N/AhttpInterface$.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.
Body OnlyemitBodyOnlyboolean

This source emits an event representing the full HTTP request by default. Select true to emit the body only.

Response Status CoderesStatusCodestring

The status code to return in the HTTP response

Response Content-TyperesContentTypestring

The Content-Type of the body returned in the HTTP response

Response BodyresBodystring

The body to return in the HTTP response

HTTP / WebhookhttpappThis component uses the HTTP / Webhook app.

Trigger Authentication

The HTTP / Webhook API does not require authentication.

About HTTP / Webhook

Get a unique URL where you can send HTTP or webhook requests

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 + HTTP / Webhook

Custom Request with HTTP / Webhook API on Custom Webhook Events from Stripe API
Stripe + HTTP / Webhook
 
Try it
GET Request with HTTP / Webhook API on Custom Webhook Events from Stripe API
Stripe + HTTP / Webhook
 
Try it
POST Request with HTTP / Webhook API on Custom Webhook Events from Stripe API
Stripe + HTTP / Webhook
 
Try it
PUT Request with HTTP / Webhook API on Custom Webhook Events from Stripe API
Stripe + HTTP / Webhook
 
Try it
Return HTTP Response with HTTP / Webhook API on Custom Webhook Events from Stripe API
Stripe + HTTP / Webhook
 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
Try it
New event when the content of the URL changes. from the HTTP / Webhook API

Emit new event when the content of the URL changes.

 
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
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Send GET Request with the HTTP / Webhook API

Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send POST Request with the HTTP / Webhook API

Send an HTTP POST request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send PUT Request with the HTTP / Webhook API

Send an HTTP PUT request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Return HTTP Response with the HTTP / Webhook API

Use with an HTTP trigger that uses "Return a custom response from your workflow" as its HTTP Response

 
Try it

Explore Other Apps

1
-
24
of
2,700+
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.