← Google Drive + BigCommerce integrations

Create Product with BigCommerce API on New or Modified Files (Instant) from Google Drive API

Pipedream makes it easy to connect APIs for BigCommerce, Google Drive and 2,000+ other apps remarkably fast.

Trigger workflow on
New or Modified Files (Instant) from the Google Drive API
Next, do this
Create Product with the BigCommerce API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 800,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 Google Drive trigger and BigCommerce 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 or Modified Files (Instant) trigger
    1. Connect your Google Drive account
    2. Select a Drive
    3. Configure Push notification renewal schedule
    4. Optional- Select one or more Folder(s)
    5. Optional- Configure Watch for changes to file properties
    6. Configure intervalAlert
    7. Optional- Configure Minimum Interval Per File
  3. Configure the Create Product action
    1. Connect your BigCommerce account
    2. Configure Name
    3. Select a Type
    4. Optional- Configure SKU
    5. Optional- Configure Description
    6. Configure Weight
    7. Optional- Configure Width
    8. Optional- Configure Depth
    9. Optional- Configure Height
    10. Configure Price
    11. Optional- Configure Cost Price
    12. Optional- Configure Retail Price
    13. Optional- Configure Sale Price
    14. Optional- Configure Map Price
    15. Optional- Select a Tax class id
    16. Optional- Configure Product tax code
    17. Optional- Select one or more Categories
    18. Optional- Select a Brand Id
    19. Optional- Configure Inventory Level
    20. Optional- Configure Inventory Warning Level
    21. Optional- Select a Inventory Tracking
    22. Optional- Configure Fixed cost shipping price
    23. Optional- Configure Is free shipping
    24. Optional- Configure Is visible
    25. Optional- Configure Is Featured
    26. Optional- Select one or more Related Products
    27. Optional- Configure Warranty
    28. Optional- Configure Bin picking number
    29. Optional- Configure Layout File
    30. Optional- Configure UPC
    31. Optional- Configure Seach keywords
    32. Optional- Select a Availability
    33. Optional- Configure Availability description
    34. Optional- Select a Gift wrapping options type
    35. Optional- Configure Gift wrapping options list
    36. Optional- Configure Sort order
    37. Optional- Select a Condition
    38. Optional- Configure Is condition shown
    39. Optional- Configure Order quantity minimum
    40. Optional- Configure Order quantity maximum
    41. Optional- Configure Page title
    42. Optional- Configure Meta keywords
    43. Optional- Configure Meta description
    44. Optional- Configure View count
    45. Optional- Configure Preorder release date
    46. Optional- Configure Preorder message
    47. Optional- Configure Is preorder only
    48. Optional- Configure Is preorder hidden
    49. Optional- Configure Price hidden label
    50. Optional- Select a Open graph type
    51. Optional- Configure Open graph title
    52. Optional- Configure Open graph description
    53. Optional- Configure Open graph use meta description
    54. Optional- Configure Open graph use product name
    55. Optional- Configure Open graph use image
    56. Optional- Configure Brand name
    57. Optional- Configure GTIN
    58. Optional- Configure MPN
    59. Optional- Configure Reviews rating sum
    60. Optional- Configure Reviews count
    61. Optional- Configure Total sold
    62. Optional- Configure Images
  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 file in the selected Drive is created, modified or trashed.
Version:0.3.0
Key:google_drive-new-or-modified-files

Google Drive Overview

The Google Drive API on Pipedream allows you to automate various file management tasks, such as creating, reading, updating, and deleting files within your Google Drive. You can also share files, manage permissions, and monitor changes to files and folders. This opens up possibilities for creating workflows that seamlessly integrate with other apps and services, streamlining document handling, backup processes, and collaborative workflows.

Trigger Code

// This source processes changes to any files in a user's Google Drive,
// implementing strategy enumerated in the Push Notifications API docs:
// https://developers.google.com/drive/api/v3/push and here:
// https://developers.google.com/drive/api/v3/manage-changes
//
// This source has two interfaces:
//
// 1) The HTTP requests tied to changes in the user's Google Drive
// 2) A timer that runs on regular intervals, renewing the notification channel as needed

import common from "../common-webhook.mjs";
import sampleEmit from "./test-event.mjs";
import {
  GOOGLE_DRIVE_NOTIFICATION_ADD,
  GOOGLE_DRIVE_NOTIFICATION_CHANGE,
  GOOGLE_DRIVE_NOTIFICATION_UPDATE,
} from "../../common/constants.mjs";
import commonDedupeChanges from "../common-dedupe-changes.mjs";

const { googleDrive } = common.props;

export default {
  ...common,
  key: "google_drive-new-or-modified-files",
  name: "New or Modified Files (Instant)",
  description: "Emit new event when a file in the selected Drive is created, modified or trashed.",
  version: "0.3.0",
  type: "source",
  // Dedupe events based on the "x-goog-message-number" header for the target channel:
  // https://developers.google.com/drive/api/v3/push#making-watch-requests
  dedupe: "unique",
  props: {
    ...common.props,
    folders: {
      type: "string[]",
      label: "Folder(s)",
      description:
        "The folder(s) to watch for changes. Leave blank to watch for any new or modified file in the Drive.",
      optional: true,
      default: [],
      options({ prevContext }) {
        const { nextPageToken } = prevContext;
        const baseOpts = {
          q: "mimeType = 'application/vnd.google-apps.folder' and trashed = false",
        };
        const opts = this.isMyDrive()
          ? baseOpts
          : {
            ...baseOpts,
            corpora: "drive",
            driveId: this.getDriveId(),
            includeItemsFromAllDrives: true,
            supportsAllDrives: true,
          };
        return this.googleDrive.listFilesOptions(nextPageToken, opts);
      },
    },
    watchForPropertiesChanges: {
      propDefinition: [
        googleDrive,
        "watchForPropertiesChanges",
      ],
    },
    ...commonDedupeChanges.props,
  },
  hooks: {
    async deploy() {
      const daysAgo = new Date();
      daysAgo.setDate(daysAgo.getDate() - 30);
      const timeString = daysAgo.toISOString();

      const args = this.getListFilesOpts({
        q: `mimeType != "application/vnd.google-apps.folder" and modifiedTime > "${timeString}" and trashed = false`,
        fields: "files",
        pageSize: 5,
      });

      const { files } = await this.googleDrive.listFilesInPage(null, args);

      await this.processChanges(files);
    },
    ...common.hooks,
  },
  methods: {
    ...common.methods,
    shouldProcess(file) {
      if (file.mimeType !== "application/vnd.google-apps.folder") {
        const watchedFolders = new Set(this.folders);
        return (
          watchedFolders.size == 0 ||
          (file.parents && file.parents.some((p) => watchedFolders.has(p)))
        );
      }
    },
    getUpdateTypes() {
      return [
        GOOGLE_DRIVE_NOTIFICATION_ADD,
        GOOGLE_DRIVE_NOTIFICATION_CHANGE,
        GOOGLE_DRIVE_NOTIFICATION_UPDATE,
      ];
    },
    generateMeta(data, headers) {
      const {
        id: fileId,
        name: summary,
        modifiedTime: tsString,
      } = data;
      const ts = Date.parse(tsString);
      const eventId = headers && headers["x-goog-message-number"];

      return {
        id: `${fileId}-${eventId || ts}`,
        summary,
        ts,
      };
    },
    async getChanges(headers) {
      if (!headers) {
        return {
          change: { },
        };
      }
      const resourceUri = headers["x-goog-resource-uri"];
      const metadata = await this.googleDrive.getFileMetadata(`${resourceUri}&fields=*`);
      return {
        ...metadata,
        change: {
          state: headers["x-goog-resource-state"],
          resourceURI: headers["x-goog-resource-uri"],
          changed: headers["x-goog-changed"], // "Additional details about the changes. Possible values: content, parents, children, permissions"
        },
      };
    },
    async processChanges(changedFiles, headers) {
      const changes = await this.getChanges(headers);

      const filteredFiles = this.checkMinimumInterval(changedFiles);

      for (const file of filteredFiles) {
        file.parents = (await this.googleDrive.getFile(file.id, {
          fields: "parents",
        })).parents;

        console.log(file); // see what file was processed

        if (!this.shouldProcess(file)) {
          console.log(`Skipping file ${file.name}`);
          continue;
        }

        const eventToEmit = {
          file,
          ...changes,
        };
        const meta = this.generateMeta(file, headers);
        this.$emit(eventToEmit, meta);
      }
    },
  },
  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
Google DrivegoogleDriveappThis component uses the Google Drive app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
DrivedrivestringSelect a value from the drop down menu.
Push notification renewal scheduletimer$.interface.timer

The Google Drive API requires occasional renewal of push notification subscriptions. This runs in the background, so you should not need to modify this schedule.

Folder(s)foldersstring[]Select a value from the drop down menu.
Watch for changes to file propertieswatchForPropertiesChangesboolean

Watch for changes to custom file properties
in addition to changes to content. Defaults to false, watching only for changes to content.

Minimum Interval Per FileperFileIntervalinteger

How many minutes to wait until the same file can emit another event.

If set to 0, this interval is disabled and all events will be emitted.

Trigger Authentication

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

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

emailprofilehttps://www.googleapis.com/auth/drivehttps://www.googleapis.com/auth/drive.readonly

About Google Drive

Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.

Action

Description:Create a product. [See the docs here](https://developer.bigcommerce.com/api-reference/366928572e59e-create-a-product)
Version:0.0.3
Key:bigcommerce-create-product

BigCommerce Overview

The BigCommerce API enables merchants to seamlessly manage their e-commerce operations by automating tasks, syncing data, and integrating with a plethora of other services. With Pipedream, you can tap into the BigCommerce API to create custom workflows that handle everything from order processing to customer relationship management. The result is a more efficient, personalized shopping experience for customers and less manual work for store owners.

Action Code

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

export default {
  ...common,
  key: "bigcommerce-create-product",
  name: "Create Product",
  description:
    "Create a product. [See the docs here](https://developer.bigcommerce.com/api-reference/366928572e59e-create-a-product)",
  version: "0.0.3",
  type: "action",
  methods: {
    ...common.methods,
    createProduct(args = {}) {
      return this.app._makeRequest({
        method: "POST",
        path: "/catalog/products",
        ...args,
      });
    },
    getRequestFn() {
      return this.createProduct;
    },
    getRequestFnArgs(args = {}) {
      return args;
    },
    getSummary(response) {
      return `Successfully created product with ID \`${response.data.id}\``;
    },
  },
};

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
BigCommerceappappThis component uses the BigCommerce app.
Namenamestring

The product name. >= 1 characters <= 250 characters

TypetypestringSelect a value from the drop down menu:physicaldigital
SKUskustring

User defined product code/stock keeping unit (SKU). >= 0 characters <= 255 characters Example: SM-13

Descriptiondescriptionstring

The product description, which can include HTML formatting.

Weightweightany

Weight of the product, which can be used when calculating shipping costs. This is based on the unit set on the store >= 0 and <= 9999999999

Widthwidthany

Width of the product, which can be used when calculating shipping costs. >= 0 and <= 9999999999

Depthdepthany

Depth of the product, which can be used when calculating shipping costs. >= 0 and <= 9999999999

Heightheightany

Height of the product, which can be used when calculating shipping costs. >= 0 and <= 9999999999

Pricepriceany

The price of the product. The price should include or exclude tax, based on the store settings. >= 0

Cost Pricecost_priceany

The cost price of the product. Stored for reference only; it is not used or displayed anywhere on the store. >=0

Retail Priceretail_priceany

The retail cost of the product. If entered, the retail cost price will be shown on the product page. >=0

Sale Pricesale_priceany

If entered, the sale price will be used instead of value in the price field when calculating the product's cost. >=0

Map Pricemap_priceinteger

Minimum Advertised Price

Tax class idtax_class_idintegerSelect a value from the drop down menu.
Product tax codeproduct_tax_codestring

Accepts AvaTax System Tax Codes, which identify products and services that fall into special sales-tax categories. By using these codes, merchants who subscribe to BigCommerce's Avalara Premium integration can calculate sales taxes more accurately. Stores without Avalara Premium will ignore the code when calculating sales tax. Do not pass more than one code. The codes are case-sensitive. For details, please see Avalara's documentation. >= 0 characters <= 255 characters

Categoriescategoriesinteger[]Select a value from the drop down menu.
Brand Idbrand_idintegerSelect a value from the drop down menu.
Inventory Levelinventory_levelinteger

Current inventory level of the product. Simple inventory tracking must be enabled (See the inventory_tracking field) for this to take any effect. >= 0 and <= 1000000000

Inventory Warning Levelinventory_warning_levelinteger

Inventory warning level for the product. When the product's inventory level drops below the warning level, the store owner will be informed. Simple inventory tracking must be enabled (see the inventory_tracking field) for this to take any effect. >= 0 and <= 1000000000

Inventory Trackinginventory_trackingstringSelect a value from the drop down menu:noneproductvariant
Fixed cost shipping pricefixed_cost_shipping_priceany

A fixed shipping cost for the product. If defined, this value will be used during checkout instead of normal shipping-cost calculation. >= 0

Is free shippingis_free_shippingboolean

Flag used to indicate whether the product has free shipping. If true, the shipping cost for the product will be zero.

Is visibleis_visibleboolean

Flag to determine whether the product should be displayed to customers browsing the store. If true, the product will be displayed. If false, the product will be hidden from view.

Is Featuredis_featuredboolean

Flag to determine whether the product should be included in the featured products panel when viewing the store.

Related Productsrelated_productsinteger[]Select a value from the drop down menu.
Warrantywarrantystring

Warranty information displayed on the product page. Can include HTML formatting. >= 0 characters and <= 65535 characters

Bin picking numberbin_picking_numberstring

The BIN picking number for the product. >= 0 characters and <= 255 characters

Layout Filelayout_filestring

The layout template file used to render this product category. This field is writable only for stores with a Blueprint theme applied. >= 0 characters and <= 500 characters

UPCupcstring

The product UPC code, which is used in feeds for shopping comparison sites and external channel integrations. >= 0 characters and <= 255 characters

Seach keywordssearch_keywordsstring

A comma-separated list of keywords that can be used to locate the product when searching the store. >= 0 characters and <= 65535 characters

AvailabilityavailabilitystringSelect a value from the drop down menu:availabledisabledpreorder
Availability descriptionavailability_descriptionstring

Availability text displayed on the checkout page, under the product title. Tells the customer how long it will normally take to ship this product, such as: 'Usually ships in 24 hours.' >= 0 characters and <= 255 characters

Gift wrapping options typegift_wrapping_options_typestringSelect a value from the drop down menu:anynonelist
Gift wrapping options listgift_wrapping_options_liststring[]

A list of gift-wrapping option IDs.

Sort ordersort_orderinteger

Priority to give this product when included in product lists on category pages and in search results. Lower integers will place the product closer to the top of the results. >= -2147483648 and <= 2147483647

ConditionconditionstringSelect a value from the drop down menu:NewUsedRefurbished
Is condition shownis_condition_shownboolean

Flag used to determine whether the product condition is shown to the customer on the product page.

Order quantity minimumorder_quantity_minimuminteger

The minimum quantity an order must contain, to be eligible to purchase this product. >= 0 and <= 1000000000

Order quantity maximumorder_quantity_maximuminteger

The maximum quantity an order can contain when purchasing the product. >= 0 and <= 1000000000

Page titlepage_titlestring

Custom title for the product page. If not defined, the product name will be used as the meta title. >= 0 characters and <= 255 characters

Meta keywordsmeta_keywordsstring[]

Custom meta keywords for the product page. If not defined, the store's default keywords will be used.

Meta descriptionmeta_descriptionstring

Custom meta description for the product page. If not defined, the store's default meta description will be used. >= 0 characters and <= 65535 characters

View countview_countinteger

The number of times the product has been viewed. >= 0 and <= 1000000000

Preorder release datepreorder_release_datestring

Pre-order release date. See the availability field for details on setting a product's availability to accept pre-orders.

Preorder messagepreorder_messagestring

Custom expected-date message to display on the product page. If undefined, the message defaults to the storewide setting. Can contain the %%DATE%% placeholder, which will be substituted for the release date. >= 0 characters and <= 255 characters

Is preorder onlyis_preorder_onlyboolean

If set to true then on the preorder release date the preorder status will automatically be removed. If set to false, then on the release date the preorder status will not be removed. It will need to be changed manually either in the control panel or using the API. Using the API set availability to available.

Is preorder hiddenis_price_hiddenboolean

False by default, indicating that this product's price should be shown on the product page. If set to true, the price is hidden. (NOTE: To successfully set is_price_hidden to true, the availability value must be disabled.)

Price hidden labelprice_hidden_labelstring

By default, an empty string. If is_price_hidden is true, the value of price_hidden_label is displayed instead of the price. (NOTE: To successfully set a non-empty string value with is_price_hidden set to true, the availability value must be disabled.) >= 0 characters and <= 200 characters

Open graph typeopen_graph_typestringSelect a value from the drop down menu:productalbumbookdrinkfoodgamemoviesongtv_show
Open graph titleopen_graph_titlestring

Title of the product, if not specified the product name will be used instead.

Open graph descriptionopen_graph_descriptionstring

Description to use for the product, if not specified then the meta_description will be used instead.

Open graph use meta descriptionopen_graph_use_meta_descriptionboolean

Flag to determine if product description or open graph description is used.

Open graph use product nameopen_graph_use_product_nameboolean

Flag to determine if product name or open graph name is used.

Open graph use imageopen_graph_use_imageboolean

Flag to determine if product image or open graph image is used.

Brand namebrand_namestring

It performs a fuzzy match and adds the brand. eg. "Common Good" and "Common good" are the same. Brand name does not return as part of a product response. Only the brand_id.

GTINgtinstring

Global Trade Item Number

MPNmpnstring

Manufacturer Part Number

Reviews rating sumreviews_rating_sumany

The total rating for the product.

Reviews countreviews_countinteger

The number of times the product has been rated.

Total soldtotal_soldinteger

The total quantity of this product sold.

Imagesimagesstring[]

Array of image strings. They can be either local paths or URLs. Limit of 8MB per file. If it is a URL it has a 255 character limit. Supported image file types are BMP, GIF, JPEG, PNG, WBMP, XBM, and WEBP. If it is a local path it should be previously downloaded to Pipedream E.g. (/tmp/my-image.png). Download a file to the /tmp directory

Action Authentication

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

  1. Navigate to Settings > API > Store-level API accounts

  2. Name the account (it will only be visible to store users)

  3. In the OAuth Scopes section, select the minimum scopes the app will require

  4. Press Save.

The base API path will look something like this: https://api.bigcommerce.com/stores/123456/

In example above, the store_hash is 123456. Enter this and the access token below.

About BigCommerce

Ecommerce for a New Era

More Ways to Connect BigCommerce + Google Drive

Create Product with BigCommerce API on Changes to Specific Files (Shared Drive) from Google Drive API
Google Drive + BigCommerce
 
Try it
Create Product with BigCommerce API on Changes to Specific Files from Google Drive API
Google Drive + BigCommerce
 
Try it
Create Product with BigCommerce API on New or Modified Comments from Google Drive API
Google Drive + BigCommerce
 
Try it
Create Product with BigCommerce API on New or Modified Folders from Google Drive API
Google Drive + BigCommerce
 
Try it
Create Product with BigCommerce API on New Shared Drive from Google Drive API
Google Drive + BigCommerce
 
Try it
Changes to Specific Files from the Google Drive API

Watches for changes to specific files, emitting an event when a change is made to one of those files. To watch for changes to shared drive files, use the Changes to Specific Files (Shared Drive) source instead.

 
Try it
Changes to Specific Files (Shared Drive) from the Google Drive API

Watches for changes to specific files in a shared drive, emitting an event when a change is made to one of those files

 
Try it
New Files (Instant) from the Google Drive API

Emit new event when a new file is added in your linked Google Drive

 
Try it
New or Modified Comments (Instant) from the Google Drive API

Emit new event when a file comment is created or modified in the selected Drive

 
Try it
New or Modified Files (Instant) from the Google Drive API

Emit new event when a file in the selected Drive is created, modified or trashed.

 
Try it
Copy File with the Google Drive API

Create a copy of the specified file. See the docs for more information

 
Try it
Create a New File with the Google Drive API

Create a new file from a URL or /tmp/filepath. See the docs for more information

 
Try it
Create Folder with the Google Drive API

Create a new empty folder. See the docs for more information

 
Try it
Create New File From Template with the Google Drive API

Create a new Google Docs file from a template. Optionally include placeholders in the template document that will get replaced from this action. See documentation

 
Try it
Create New File From Text with the Google Drive API

Create a new file from plain text. See the docs for more information

 
Try it

Explore Other Apps

1
-
24
of
2,000+
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.
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 (REST API)
Salesforce (REST API)
Web services API for interacting with Salesforce
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 Developer App
Shopify Developer App
Shopify is a user-friendly e-commerce platform that helps small businesses build an online store and sell online through one streamlined dashboard.
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.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.