← HTTP / Webhook + QuickBooks integrations

Update Item with QuickBooks API on New Requests from HTTP / Webhook API

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

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

HTTP / Webhook Overview

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

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

Point and click HTTP requests

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

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

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

Focus on integrating, not authenticating

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

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

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

Compatible with no code actions or Node.js and Python

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

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

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

Trigger Code

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

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

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

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

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
N/AhttpInterface$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
Body OnlyemitBodyOnlyboolean

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

Response Status CoderesStatusCodestring

The status code to return in the HTTP response

Response Content-TyperesContentTypestring

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

Response BodyresBodystring

The body to return in the HTTP response

HTTP / WebhookhttpappThis component uses the HTTP / Webhook app.

Trigger Authentication

The HTTP / Webhook API does not require authentication.

About HTTP / Webhook

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

Action

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

Send any HTTP Request with HTTP / Webhook API on New Customer Created from QuickBooks API
QuickBooks + HTTP / Webhook
 
Try it
Send GET Request with HTTP / Webhook API on New Customer Created from QuickBooks API
QuickBooks + HTTP / Webhook
 
Try it
Send POST Request with HTTP / Webhook API on New Customer Created from QuickBooks API
QuickBooks + HTTP / Webhook
 
Try it
Send PUT Request with HTTP / Webhook API on New Customer Created from QuickBooks API
QuickBooks + HTTP / Webhook
 
Try it
Send any HTTP Request with HTTP / Webhook API on New Invoice Created from QuickBooks API
QuickBooks + HTTP / Webhook
 
Try it
New Requests from the HTTP / Webhook API

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

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

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

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

Emit new event when the content of the URL changes.

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

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

 
Try it
Send GET Request with the HTTP / Webhook API

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

 
Try it
Send POST Request with the HTTP / Webhook API

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

 
Try it
Send PUT Request with the HTTP / Webhook API

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

 
Try it
Return HTTP Response with the HTTP / Webhook API

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

 
Try it

Explore Other Apps

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