← Slack + Stripe integrations

Create a Customer with Stripe API on New Message In Channels (Instant) from Slack API

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

Trigger workflow on
New Message In Channels (Instant) from the Slack 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 Slack 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 Message In Channels (Instant) trigger
    1. Connect your Slack account
    2. Optional- Select one or more Channels
    3. Configure slackApphook
    4. Optional- Configure Resolve Names
    5. Optional- Configure Ignore Bots
    6. Optional- Configure Ignore replies in threads
  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 message is posted to one or more channels
Version:1.0.24
Key:slack-new-message-in-channels

Slack Overview

The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. Once you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions or write your own code against the Slack API.

The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.

  • Automate posting updates to your team channels
  • Create a bot to answer common questions
  • Integrate with your existing tools and services
  • And much more!

Trigger Code

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

export default {
  ...common,
  key: "slack-new-message-in-channels",
  name: "New Message In Channels (Instant)",
  version: "1.0.24",
  description: "Emit new event when a new message is posted to one or more channels",
  type: "source",
  dedupe: "unique",
  props: {
    ...common.props,
    conversations: {
      propDefinition: [
        common.props.slack,
        "conversation",
      ],
      type: "string[]",
      label: "Channels",
      description: "Select one or more channels to monitor for new messages.",
      optional: true,
    },
    // eslint-disable-next-line pipedream/props-description,pipedream/props-label
    slackApphook: {
      type: "$.interface.apphook",
      appProp: "slack",
      async eventNames() {
        return this.conversations || [
          "message",
        ];
      },
    },
    resolveNames: {
      propDefinition: [
        common.props.slack,
        "resolveNames",
      ],
    },
    ignoreBot: {
      propDefinition: [
        common.props.slack,
        "ignoreBot",
      ],
    },
    ignoreThreads: {
      type: "boolean",
      label: "Ignore replies in threads",
      description: "Ignore replies to messages in threads",
      optional: true,
    },
  },
  methods: {
    ...common.methods,
    getSummary() {
      return "New message in channel";
    },
    async processEvent(event) {
      if (event.type !== "message") {
        console.log(`Ignoring event with unexpected type "${event.type}"`);
        return;
      }
      if (event.subtype && !constants.ALLOWED_MESSAGE_IN_CHANNEL_SUBTYPES.includes(event.subtype)) {
        // This source is designed to just emit an event for each new message received.
        // Due to inconsistencies with the shape of message_changed and message_deleted
        // events, we are ignoring them for now. If you want to handle these types of
        // events, feel free to change this code!!
        console.log("Ignoring message with subtype.");
        return;
      }
      if ((this.ignoreBot) && (event.subtype == "bot_message" || event.bot_id)) {
        return;
      }
      // There is no thread message type only the thread_ts field
      // indicates if the message is part of a thread in the event.
      if (this.ignoreThreads && event.thread_ts) {
        console.log("Ignoring reply in thread");
        return;
      }
      if (this.resolveNames) {
        if (event.user) {
          event.user_id = event.user;
          event.user = await this.getUserName(event.user);
        } else if (event.bot_id) {
          event.bot = await this.getBotName(event.bot_id);
        }
        event.channel_id = event.channel;
        event.channel = await this.getConversationName(event.channel);
        if (event.team) {
          event.team_id = event.team;
          event.team = await this.getTeamName(event.team);
        }
      }
      return event;
    },
  },
  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
SlackslackappThis component uses the Slack app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Channelsconversationsstring[]Select a value from the drop down menu.
slackApphook$.interface.apphook
Resolve NamesresolveNamesboolean

Instead of returning channel, team, and user as IDs, return their human-readable names.

Ignore BotsignoreBotboolean

Ignore messages from bots

Ignore replies in threadsignoreThreadsboolean

Ignore replies to messages in threads

Trigger Authentication

Slack uses OAuth authentication. When you connect your Slack account, Pipedream will open a popup window where you can sign into Slack and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Slack API.

Pipedream requests the following authorization scopes when you connect your account:

channels:historychannels:readchannels:writeemoji:readgroups:historygroups:readgroups:writeim:historyim:readim:writelinks:readlinks:writempim:historympim:readmpim:writereactions:readreactions:writereminders:readreminders:writestars:readteam:readusergroups:readusergroups:writeusers:readusers:read.emailusers:writechat:write:botchat:write:userfiles:write:usercommandsusers.profile:writeusers.profile:readsearch:read

About 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.

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 + Slack

Create Invoice with Stripe API on New Message In Channels from Slack API
Slack + Stripe
 
Try it
Delete Invoice Line Item with Stripe API on New Message In Channels from Slack API
Slack + Stripe
 
Try it
Cancel Or Reverse a Payout with Stripe API on New Message In Channels from Slack API
Slack + Stripe
 
Try it
Cancel a Payment Intent with Stripe API on New Message In Channels from Slack API
Slack + Stripe
 
Try it
Create a Payout with Stripe API on New Message In Channels from Slack API
Slack + Stripe
 
Try it
New Message In Channels (Instant) from the Slack API

Emit new event when a new message is posted to one or more channels

 
Try it
New Channel Created (Instant) from the Slack API

Emit new event when a new channel is created.

 
Try it
New Direct Message (Instant) from the Slack API

Emit new event when a message was posted in a direct message channel

 
Try it
New Interaction Events (Instant) from the Slack API

Emit new events on new Slack interactivity events sourced from Block Kit interactive elements, Slash commands, or Shortcuts

 
Try it
New Keyword Mention (Instant) from the Slack API

Emit new event when a specific keyword is mentioned in a channel

 
Try it
Send Message to Channel with the Slack API

Send a message to a public or private channel. See the documentation

 
Try it
Send Message with the Slack API

Send a message to a user, group, private channel or public channel. See the documentation

 
Try it
Build and Send a Block Kit Message with the Slack API

Configure custom blocks and send to a channel, group, or user. See the documentation

 
Try it
Reply to a Message Thread with the Slack API

Send a message as a threaded reply. See postMessage or scheduleMessage docs here

 
Try it
Send Message to User or Group with the Slack API

Send a message to a user or group. See the documentation

 
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.