← npm + QuickBooks integrations

Update Item with QuickBooks API on New Download Counts from npm API

Pipedream makes it easy to connect APIs for QuickBooks, npm and 2,400+ other apps remarkably fast.

Trigger workflow on
New Download Counts from the npm API
Next, do this
Update Item with the QuickBooks 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 npm trigger and QuickBooks 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 Download Counts trigger
    1. Connect your npm account
    2. Configure timer
    3. Select a Period
    4. Optional- Configure Package
  3. Configure the Update Item action
    1. Connect your QuickBooks account
    2. Select a Item ID
    3. Configure Name
    4. Optional- Configure Track Quantity on Hand
    5. Optional- Configure Quantity on Hand
    6. Optional- Select a Income Account Ref Value
    7. Optional- Select a Type
    8. Optional- Select a Asset Account Ref Value
    9. Optional- Configure Inventory Start Date
    10. Optional- Select a Expense Account Ref Value
    11. Optional- Configure Sku
    12. Optional- Configure Sales Tax Included
    13. Optional- Select a Sales Tax Code Ref Value
    14. Optional- Configure Purchase Tax Included
    15. Optional- Configure Description
    16. Optional- Configure Abatement Rate
    17. Optional- Configure Reverse Charge Rate
    18. Optional- Configure Sub Item
    19. Optional- Configure Taxable
    20. Optional- Configure UQC Display Text
    21. Optional- Configure Reorder Point
    22. Optional- Configure Purchase Description
    23. Optional- Select a Pref Vendor Ref Value
    24. Optional- Configure Active
    25. Optional- Configure UQC ID
    26. Optional- Select a Purchase Tax Code Ref Value
    27. Optional- Configure Service Type
    28. Optional- Configure Purchase Cost
    29. Optional- Configure Unit Price
    30. Optional- Select a Tax Classification ID
    31. Optional- Select a Parent Ref Value
  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 with the latest count of downloads for an npm package. [See the documentation](https://github.com/npm/registry/blob/main/docs/download-counts.md).
Version:0.1.0
Key:npm-download-counts

Trigger Code

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

export default {
  key: "npm-download-counts",
  name: "New Download Counts",
  description: "Emit new event with the latest count of downloads for an npm package. [See the documentation](https://github.com/npm/registry/blob/main/docs/download-counts.md).",
  version: "0.1.0",
  type: "source",
  props: {
    app,
    db: "$.service.db",
    timer: {
      type: "$.interface.timer",
      description: "One day interval time is recommended because NPM only update metrics once a day. [See the documentation](https://github.com/npm/registry/blob/main/docs/download-counts.md#data-source).",
      default: {
        intervalSeconds: 60 * 60 * 24,
      },
    },
    period: {
      type: "string",
      label: "Period",
      description: "Select last-day, last-week or last-month.",
      optional: false,
      default: "last-day",
      options: [
        "last-day",
        "last-week",
        "last-month",
      ],
    },
    packageName: {
      type: "string",
      label: "Package",
      description: "Enter an npm package name. Leave blank for all",
      optional: true,
    },
  },
  methods: {
    getDownloadCounts({
      period, packageName, ...args
    } = {}) {
      const basePath = `/downloads/point/${encodeURIComponent(period)}`;
      return this.app.makeRequest({
        path: packageName
          ? `${basePath}/${encodeURIComponent(packageName)}`
          : basePath,
        ...args,
      });
    },
  },
  async run({ timestamp: ts }) {
    const {
      getDownloadCounts,
      period,
      packageName,
    } = this;

    const response = await getDownloadCounts({
      period,
      packageName,
    });

    this.$emit(response, {
      id: ts,
      summary: `New Download Count ${response.downloads}`,
      ts,
    });
  },
};

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

One day interval time is recommended because NPM only update metrics once a day. See the documentation.

PeriodperiodstringSelect a value from the drop down menu:last-daylast-weeklast-month
PackagepackageNamestring

Enter an npm package name. Leave blank for all

Trigger Authentication

The npm API does not require authentication.

About npm

Node package manager

Action

Description:Updates an item. [See the documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/item#full-update-an-item)
Version:0.0.1
Key:quickbooks-update-item

QuickBooks Overview

The QuickBooks API allows for streamlined financial management within Pipedream's ecosystem, enabling automated accounting and data syncing across various platforms. With this API, you can manipulate invoices, manage sales receipts, handle expenses, and synchronize customer data. It's a robust tool for financial oversight and automation that can save time and reduce errors for businesses of all sizes.

Action Code

import quickbooks from "../../quickbooks.app.mjs";
import { ConfigurationError } from "@pipedream/platform";

export default {
  key: "quickbooks-update-item",
  name: "Update Item",
  description: "Updates an item. [See the documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/item#full-update-an-item)",
  version: "0.0.1",
  type: "action",
  props: {
    quickbooks,
    itemId: {
      propDefinition: [
        quickbooks,
        "itemId",
      ],
    },
    name: {
      type: "string",
      label: "Name",
      description: "Name of the item. This value must be unique.",
    },
    trackQtyOnHand: {
      type: "boolean",
      label: "Track Quantity on Hand",
      description: "True if there is quantity on hand to be tracked. Once this value is true, it cannot be updated to false. Applicable for items of type `Inventory`. Not applicable for `Service` or `NonInventory` item types.",
      optional: true,
    },
    qtyOnHand: {
      type: "string",
      label: "Quantity on Hand",
      description: "Current quantity of the `Inventory` items available for sale. Not used for `Service` or `NonInventory` type items. Required for `Inventory` type items.",
      optional: true,
    },
    incomeAccountRefValue: {
      type: "string",
      label: "Income Account Ref Value",
      description: "Reference to the posting account, that is, the account that records the proceeds from the sale of this item. Must be an account with account type of `Sales of Product Income`. Query the Account name list resource to determine the appropriate Account object for this reference. Use `Account.Id` from that object for `IncomeAccountRef.value`. See specifications for the IncomeAccountRef parameters in the [Create an item page](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/item#create-an-item).",
      propDefinition: [
        quickbooks,
        "accountIds",
      ],
    },
    type: {
      type: "string",
      label: "Type",
      description: "Classification that specifies the use of this item. See the description at the top of the [Item entity page](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/item) for details about supported item types. See specifications for the type parameter in the [Create an item page](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/item#create-an-item).",
      optional: true,
      options: [
        "Inventory",
        "Group",
        "Service",
        "NonInventory",
      ],
    },
    assetAccountRefValue: {
      type: "string",
      label: "Asset Account Ref Value",
      description: "Required for Inventory item types. Reference to the Inventory Asset account that tracks the current value of the inventory. If the same account is used for all inventory items, the current balance of this account will represent the current total value of the inventory. Must be an account with account type of `Other Current Asset`. Query the Account name list resource to determine the appropriate Account object for this reference. Use `Account.Id` from that object for `AssetAccountRef.value`.",
      propDefinition: [
        quickbooks,
        "accountIds",
      ],
    },
    invStartDate: {
      type: "string",
      label: "Inventory Start Date",
      description: "Date of opening balance for the inventory transaction. Required when creating an `Item.Type=Inventory`. Required for `Inventory` item types.",
      optional: true,
    },
    expenseAccountRefValue: {
      type: "string",
      label: "Expense Account Ref Value",
      description: "Reference to the expense account used to pay the vendor for this item. Must be an account with account type of `Cost of Goods Sold`. Query the Account name list resource to determine the appropriate Account object for this reference. Use `Account.Id` from that object for `ExpenseAccountRef.value`. See specifications for the ExpenseAccountRef parameters in the [Create an item page](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/item#create-an-item).",
      propDefinition: [
        quickbooks,
        "accountIds",
      ],
    },
    sku: {
      type: "string",
      label: "Sku",
      description: "The stock keeping unit (SKU) for this Item. This is a company-defined identifier for an item or product used in tracking inventory.",
      optional: true,
    },
    salesTaxIncluded: {
      type: "boolean",
      label: "Sales Tax Included",
      description: "True if the sales tax is included in the item amount, and therefore is not calculated for the transaction.",
      optional: true,
    },
    salesTaxCodeRefValue: {
      label: "Sales Tax Code Ref Value",
      description: "ID of the referenced sales tax code  for the Sales item. Applicable to Service and Sales item types only. Query the TaxCode name list resource to determine the appropriate TaxCode object for this reference. Use `TaxCode.Id` from that object for `SalesTaxCodeRef.value`.",
      propDefinition: [
        quickbooks,
        "taxCodeId",
      ],
    },
    purchaseTaxIncluded: {
      type: "boolean",
      label: "Purchase Tax Included",
      description: "True if the purchase tax is included in the item amount, and therefore is not calculated for the transaction.",
      optional: true,
    },
    description: {
      type: "string",
      label: "Description",
      description: "Description of the item.",
      optional: true,
    },
    abatementRate: {
      type: "string",
      label: "Abatement Rate",
      description: "Sales tax abatement rate for India locales.",
      optional: true,
    },
    reverseChargeRate: {
      type: "string",
      label: "Reverse Charge Rate",
      description: "Sales tax reverse charge rate for India locales.",
      optional: true,
    },
    subItem: {
      type: "boolean",
      label: "Sub Item",
      description: "If true, this is a sub item. If false or null, this is a top-level item. Creating inventory hierarchies with traditional inventory items is being phased out in lieu of using categories and sub categories.",
      optional: true,
    },
    taxable: {
      type: "boolean",
      label: "Taxable",
      description: "If true, transactions for this item are taxable. Applicable to US companies, only.",
      optional: true,
    },
    UqcDisplayText: {
      type: "string",
      label: "UQC Display Text",
      description: "Text to be displayed on customer's invoice to denote the Unit of Measure (instead of the standard code).",
      optional: true,
    },
    reorderPoint: {
      type: "string",
      label: "Reorder Point",
      description: "The minimum quantity of a particular inventory item that you need to restock at any given time. The ReorderPoint value cannot be set to null for sparse updates(sparse=true). It can be set to null only for full updates.",
      optional: true,
    },
    purchaseDesc: {
      type: "string",
      label: "Purchase Description",
      description: "Purchase description for the item.",
      optional: true,
    },
    prefVendorRefValue: {
      type: "string",
      label: "Pref Vendor Ref Value",
      description: "Pref vendor ref value",
      propDefinition: [
        quickbooks,
        "vendorIds",
      ],
    },
    active: {
      type: "boolean",
      label: "Active",
      description: "If true, the object is currently enabled for use by QuickBooks.",
      optional: true,
    },
    UqcId: {
      type: "string",
      label: "UQC ID",
      description: "ID of Standard Unit of Measure (UQC:Unique Quantity Code) of the item according to GST rule.",
      optional: true,
    },
    purchaseTaxCodeRefValue: {
      label: "Purchase Tax Code Ref Value",
      description: "The ID for the referenced purchase tax code object as found in the Id field of the object payload. \n\nReference to the purchase tax code for the item. Applicable to Service, Other Charge, and Product (Non-Inventory) item types. Query the TaxCode name list resource to determine the appropriate TaxCode object for this reference. Use `TaxCode.Id` from that object for `PurchaseTaxCodeRef.value`.",
      propDefinition: [
        quickbooks,
        "taxCodeId",
      ],
    },
    serviceType: {
      type: "string",
      label: "Service Type",
      description: "Sales tax service type for India locales.",
      optional: true,
    },
    purchaseCost: {
      type: "string",
      label: "Purchase Cost",
      description: "Amount paid when buying or ordering the item, as expressed in the home currency.",
      optional: true,
    },
    unitPrice: {
      type: "string",
      label: "Unit Price",
      description: "Corresponds to the Price/Rate column on the QuickBooks Online UI to specify either unit price, a discount, or a tax rate for item. If used for unit price, the monetary value of the service or product, as expressed in the home currency. If used for a discount or tax rate, express the percentage as a fraction. For example, specify `0.4` for 40% tax",
      optional: true,
    },
    taxClassificationRefValue: {
      description: "The ID for the referenced Tax classification object as found in the Id field of the object payload.\n\nTax classification segregates different items into different classifications and the tax classification is one of the key parameters to determine appropriate tax on transactions involving items. Tax classifications are sourced by either tax governing authorities as in India/Malaysia or externally like Exactor. 'Fuel', 'Garments' and 'Soft drinks' are a few examples of tax classification in layman terms. User can choose a specific tax classification for an item while creating it. A level 1 tax classification cannot be associated to an Item",
      propDefinition: [
        quickbooks,
        "taxClassificationId",
      ],
    },
    parentRefValue: {
      label: "Parent Ref Value",
      description: "The ID for the referenced parent item object as found in the Id field of the object payload. \n\nThe immediate parent of the sub item in the hierarchical Category:Sub-category list. If SubItem is true, then ParenRef is required. Query the Item name list resource to determine the appropriate object for this reference. Use `Item.Id` from that object for `ParentRef.value`.",
      optional: true,
      propDefinition: [
        quickbooks,
        "itemId",
      ],
    },
  },
  methods: {
    async getSyncToken($) {
      const { Item: item } = await this.quickbooks.getItem({
        $,
        itemId: this.itemId,
      });
      return item.SyncToken;
    },
  },
  async run({ $ }) {
    if (!this.itemId || !this.name) {
      throw new ConfigurationError("Must provide itemId and name parameters.");
    }

    const data = {
      sparse: true,
      Id: this.itemId,
      Name: this.name,
      QtyOnHand: this.qtyOnHand,
      SyncToken: await this.getSyncToken($),
      IncomeAccountRef: this.incomeAccountRefValue && {
        value: this.incomeAccountRefValue,
      },
      Type: this.type,
      AssetAccountRef: this.assetAccountRefValue && {
        value: this.assetAccountRefValue,
      },
      InvStartDate: this.invStartDate,
      ExpenseAccountRef: this.expenseAccountRefValue && {
        value: this.expenseAccountRefValue,
      },
      Sku: this.sku,
      SalesTaxIncluded: this.salesTaxIncluded,
      TrackQtyOnHand: this.trackQtyOnHand,
      SalesTaxCodeRef: this.salesTaxCodeRefValue && {
        value: this.salesTaxCodeRefValue,
      },
      PurchaseTaxIncluded: this.purchaseTaxIncluded,
      Description: this.description,
      AbatementRate: this.abatementRate,
      ReverseChargeRate: this.reverseChargeRate,
      SubItem: this.subItem,
      Taxable: this.taxable,
      UQCDisplayText: this.UqcDisplayText,
      ReorderPoint: this.reorderPoint,
      PurchaseDesc: this.purchaseDesc,
      PrefVendorRef: this.prefVendorRefValue && {
        value: this.prefVendorRefValue,
      },
      Active: this.active,
      UQCId: this.UqcId,
      PurchaseTaxCodeRef: this.purchaseTaxCodeRefValue && {
        value: this.purchaseTaxCodeRefValue,
      },
      ServiceType: this.serviceType,
      PurchaseCost: this.purchaseCost,
      UnitPrice: this.unitPrice,
      TaxClassificationRef: this.taxClassificationRefValue && {
        value: this.taxClassificationRefValue,
      },
    };

    if (this.parentRefValue || this.parentRefName) {
      data["ParentRef"] = {
        value: this.parentRefValue,
      };
    }

    const response = await this.quickbooks.updateItem({
      $,
      data,
    });

    if (response) {
      $.export("summary", `Successfully updated item with ID ${this.itemId}`);
    }

    return response;
  },
};

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
QuickBooksquickbooksappThis component uses the QuickBooks app.
Item IDitemIdstringSelect a value from the drop down menu.
Namenamestring

Name of the item. This value must be unique.

Track Quantity on HandtrackQtyOnHandboolean

True if there is quantity on hand to be tracked. Once this value is true, it cannot be updated to false. Applicable for items of type Inventory. Not applicable for Service or NonInventory item types.

Quantity on HandqtyOnHandstring

Current quantity of the Inventory items available for sale. Not used for Service or NonInventory type items. Required for Inventory type items.

Income Account Ref ValueincomeAccountRefValuestringSelect a value from the drop down menu.
TypetypestringSelect a value from the drop down menu:InventoryGroupServiceNonInventory
Asset Account Ref ValueassetAccountRefValuestringSelect a value from the drop down menu.
Inventory Start DateinvStartDatestring

Date of opening balance for the inventory transaction. Required when creating an Item.Type=Inventory. Required for Inventory item types.

Expense Account Ref ValueexpenseAccountRefValuestringSelect a value from the drop down menu.
Skuskustring

The stock keeping unit (SKU) for this Item. This is a company-defined identifier for an item or product used in tracking inventory.

Sales Tax IncludedsalesTaxIncludedboolean

True if the sales tax is included in the item amount, and therefore is not calculated for the transaction.

Sales Tax Code Ref ValuesalesTaxCodeRefValuestringSelect a value from the drop down menu.
Purchase Tax IncludedpurchaseTaxIncludedboolean

True if the purchase tax is included in the item amount, and therefore is not calculated for the transaction.

Descriptiondescriptionstring

Description of the item.

Abatement RateabatementRatestring

Sales tax abatement rate for India locales.

Reverse Charge RatereverseChargeRatestring

Sales tax reverse charge rate for India locales.

Sub ItemsubItemboolean

If true, this is a sub item. If false or null, this is a top-level item. Creating inventory hierarchies with traditional inventory items is being phased out in lieu of using categories and sub categories.

Taxabletaxableboolean

If true, transactions for this item are taxable. Applicable to US companies, only.

UQC Display TextUqcDisplayTextstring

Text to be displayed on customer's invoice to denote the Unit of Measure (instead of the standard code).

Reorder PointreorderPointstring

The minimum quantity of a particular inventory item that you need to restock at any given time. The ReorderPoint value cannot be set to null for sparse updates(sparse=true). It can be set to null only for full updates.

Purchase DescriptionpurchaseDescstring

Purchase description for the item.

Pref Vendor Ref ValueprefVendorRefValuestringSelect a value from the drop down menu.
Activeactiveboolean

If true, the object is currently enabled for use by QuickBooks.

UQC IDUqcIdstring

ID of Standard Unit of Measure (UQC:Unique Quantity Code) of the item according to GST rule.

Purchase Tax Code Ref ValuepurchaseTaxCodeRefValuestringSelect a value from the drop down menu.
Service TypeserviceTypestring

Sales tax service type for India locales.

Purchase CostpurchaseCoststring

Amount paid when buying or ordering the item, as expressed in the home currency.

Unit PriceunitPricestring

Corresponds to the Price/Rate column on the QuickBooks Online UI to specify either unit price, a discount, or a tax rate for item. If used for unit price, the monetary value of the service or product, as expressed in the home currency. If used for a discount or tax rate, express the percentage as a fraction. For example, specify 0.4 for 40% tax

Tax Classification IDtaxClassificationRefValuestringSelect a value from the drop down menu.
Parent Ref ValueparentRefValuestringSelect a value from the drop down menu.

Action Authentication

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

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

com.intuit.quickbooks.accountingopenidprofileemail

About QuickBooks

QuickBooks Online is designed to help you manage your business finances with ease.

More Ways to Connect QuickBooks + npm

Create Bill with Quickbooks API on npm Download Counts from npm API
npm + QuickBooks
 
Try it
Create Customer with Quickbooks API on npm Download Counts from npm API
npm + QuickBooks
 
Try it
Create Invoice with Quickbooks API on npm Download Counts from npm API
npm + QuickBooks
 
Try it
Get Bill with Quickbooks API on npm Download Counts from npm API
npm + QuickBooks
 
Try it
Get Customer with Quickbooks API on npm Download Counts from npm API
npm + QuickBooks
 
Try it
New Download Counts from the npm API

Emit new event with the latest count of downloads for an npm package. See the documentation.

 
Try it
New Package Version from the npm API

Emit new event when a new version of an npm package is published. See the documentation

 
Try it
New Customer Created from the QuickBooks API

Emit new event when a new customer is created.

 
Try it
New Customer Updated from the QuickBooks API

Emit new event when a customer is updated.

 
Try it
New Employee Created from the QuickBooks API

Emit new event when a new employee is created.

 
Try it
Create AP Aging Detail Report with the QuickBooks API

Creates an AP aging report in Quickbooks Online. See the documentation

 
Try it
Create Bill with the QuickBooks API

Creates a bill. See the documentation

 
Try it
Create Customer with the QuickBooks API

Creates a customer. See the documentation

 
Try it
Create Invoice with the QuickBooks API

Creates an invoice. See the documentation

 
Try it
Create Payment with the QuickBooks API

Creates a payment. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,400+
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
Salesforce
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
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.
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.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.