← Plivo + Stripe integrations

Create a Customer with Stripe API on New Completed Call from Plivo API

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

Trigger workflow on
New Completed Call from the Plivo 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 Plivo 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 Completed Call trigger
    1. Connect your Plivo account
    2. Configure Polling schedule
  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 call is completed. [See the docs](https://www.plivo.com/docs/voice/api/call#retrieve-all-calls).
Version:0.0.1
Key:plivo-new-completed-call

Plivo Overview

The Plivo API taps into the power of cloud communication, allowing you to programmatically send SMS messages, make voice calls, and manage user verifications among other telephony functions. With Pipedream's serverless platform, you can easily integrate Plivo into workflows that automate these communication tasks, react to incoming messages or calls, and connect with numerous other apps for comprehensive automation solutions.

Trigger Code

import common from "../common/polling.mjs";
import constants from "../../common/constants.mjs";

export default {
  ...common,
  key: "plivo-new-completed-call",
  name: "New Completed Call",
  description: "Emit new event when a call is completed. [See the docs](https://www.plivo.com/docs/voice/api/call#retrieve-all-calls).",
  type: "source",
  version: "0.0.1",
  dedupe: "unique",
  methods: {
    ...common.methods,
    getResourcesFn() {
      return this.app.listCalls;
    },
    getResourcesFnArgs() {
      const lastEndTime = this.getLastEndTime();
      if (lastEndTime) {
        return {
          limit: constants.DEFAULT_LIMIT,
          end_time__gt: lastEndTime,
        };
      }
      return {
        limit: constants.DEFAULT_LIMIT,
      };
    },
    generateMeta(resource) {
      return {
        id: resource.callUuid,
        ts: Date.parse(resource.initiationTime),
        summary: `New Call ID ${resource.callUuid}`,
      };
    },
  },
};

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
PlivoappappThis component uses the Plivo app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Polling scheduletimer$.interface.timer

How often to poll the Plivo API

Trigger Authentication

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

All requests to Plivo API are authenticated with BasicAuth using your AUTH ID and AUTH TOKEN. Your Plivo AUTH ID and AUTH TOKEN can be found when you login to your dashboard

About Plivo

SMS API and Voice API platform

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

Make A Call with Plivo API on New Custom Webhook Events from Stripe API
Stripe + Plivo
 
Try it
Plays An Audio with Plivo API on New Custom Webhook Events from Stripe API
Stripe + Plivo
 
Try it
Send MMS with Plivo API on New Custom Webhook Events from Stripe API
Stripe + Plivo
 
Try it
Send SMS with Plivo API on New Custom Webhook Events from Stripe API
Stripe + Plivo
 
Try it
Speak Text with Plivo API on New Custom Webhook Events from Stripe API
Stripe + Plivo
 
Try it
New Completed Call from the Plivo API

Emit new event when a call is completed. See the docs

 
Try it
New SMS Received (Instant) from the Plivo API

Emit new event when a new SMS is received. See the docs

 
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
Make A Call with the Plivo API

Makes a call. See the docs

 
Try it
Plays An Audio with the Plivo API

Plays audio on a call. See the docs

 
Try it
Send MMS with the Plivo API

Sends an MMS message to a phone number. See the docs

 
Try it
Send SMS with the Plivo API

Sends an SMS message to a phone number. See the docs

 
Try it
Speak Text with the Plivo API

Speaks a text to the caller. See the docs

 
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.