← Slack + Quickbooks Sandbox integrations

Update Item with Quickbooks Sandbox API on New Message In Channels (Instant) from Slack API

Pipedream makes it easy to connect APIs for Quickbooks Sandbox, Slack and 2,400+ other apps remarkably fast.

Trigger workflow on
New Message In Channels (Instant) from the Slack API
Next, do this
Update Item with the Quickbooks Sandbox API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Slack trigger and Quickbooks Sandbox action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Message In Channels (Instant) trigger
    1. Connect your Slack account
    2. Optional- Select one or more Channels
    3. Configure slackApphook
    4. Optional- Configure Resolve Names
    5. Optional- Configure Ignore Bots
    6. Optional- Configure Ignore replies in threads
  3. Configure the Update Item action
    1. Connect your Quickbooks Sandbox account
    2. Configure item_id
    3. Configure name
    4. Configure sync_token
    5. Configure track_qty_on_hand
    6. Configure sparse_update
    7. Optional- Configure qty_on_hand
    8. Optional- Configure income_account_ref_value
    9. Optional- Configure income_account_ref_name
    10. Optional- Select a type
    11. Optional- Configure asset_account_ref_value
    12. Optional- Configure asset_account_ref_name
    13. Optional- Configure inv_start_date
    14. Optional- Configure expense_account_ref_value
    15. Optional- Configure expense_account_ref_name
    16. Optional- Configure Sku
    17. Optional- Configure sales_tax_included
    18. Optional- Configure sales_tax_code_ref_value
    19. Optional- Configure sales_tax_code_ref_name
    20. Optional- Configure class_ref_value
    21. Optional- Configure class_ref_name
    22. Optional- Configure purchase_tax_tncluded
    23. Optional- Configure description
    24. Optional- Configure abatement_rate
    25. Optional- Configure reverse_charge_rate
    26. Optional- Configure sub_item
    27. Optional- Configure taxable
    28. Optional- Configure UQC_display_text
    29. Optional- Configure reorder_point
    30. Optional- Configure purchase_desc
    31. Optional- Configure pref_vendor_ref_value
    32. Optional- Configure pref_vendor_ref_name
    33. Optional- Configure active
    34. Optional- Configure UQC_id
    35. Optional- Configure purchase_tax_code_ref_value
    36. Optional- Configure purchase_tax_code_ref_name
    37. Optional- Configure service_type
    38. Optional- Configure purchase_cost
    39. Optional- Configure unit_price
    40. Optional- Configure tax_classification_ref_value
    41. Optional- Configure tax_classification_ref_name
    42. Optional- Configure parent_ref_name
    43. Optional- Configure parent_ref_value
    44. Optional- Configure minorversion
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a new message is posted to one or more channels
Version:1.0.22
Key:slack-new-message-in-channels

Slack Overview

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

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

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

Trigger Code

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

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

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
SlackslackappThis component uses the Slack app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Channelsconversationsstring[]Select a value from the drop down menu.
slackApphook$.interface.apphook
Resolve NamesresolveNamesboolean

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

Ignore BotsignoreBotboolean

Ignore messages from bots

Ignore replies in threadsignoreThreadsboolean

Ignore replies to messages in threads

Trigger Authentication

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

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

bookmarks:writecalls:readcalls:writechannels:historychannels:readchannels:writednd:readdnd:writeemoji:readfiles:readgroups:historygroups:readgroups:writeim:historyim:readim:writelinks:readlinks:writempim:historympim:readmpim:writepins:readpins:writereactions:readreactions:writereminders:readreminders:writeremote_files:readremote_files:sharestars:readstars:writeteam:readusergroups:readusergroups:writeusers:readusers:read.emailusers:writechat:write:botchat:write:usercommandsfiles:write:userusers.profile:writeusers.profile:readsearch:read

About Slack

Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.

Action

Description:Updates an item.
Version:0.2.1
Key:quickbooks_sandbox-update-item

Quickbooks Sandbox Overview

QuickBooks Sandbox API provides a robust platform for developers to test QuickBooks Online integrations without affecting live data. With Pipedream, you can harness this API to automate various accounting tasks, simulate financial scenarios, or validate app behavior pre-deployment. Imagine syncing invoice statuses with your CRM, triggering alerts based on financial thresholds, or reconciling payments programmatically—all in a safe, isolated environment before going live.

Action Code

// legacy_hash_id: a_bKil4n
import { axios } from "@pipedream/platform";

export default {
  key: "quickbooks_sandbox-update-item",
  name: "Update Item",
  description: "Updates an item.",
  version: "0.2.1",
  type: "action",
  props: {
    quickbooks_sandbox: {
      type: "app",
      app: "quickbooks_sandbox",
    },
    item_id: {
      type: "string",
      description: "Id of the item to update.",
    },
    name: {
      type: "string",
      description: "Name of the item. This value must be unique.",
    },
    sync_token: {
      type: "string",
      description: "Version number of the entity. Required for the update operation.",
    },
    track_qty_on_hand: {
      type: "boolean",
      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.",
    },
    sparse_update: {
      type: "string",
      description: "When set to `true`, sparse updating provides the ability to update a subset of properties for a given object; only elements specified in the request are updated. Missing elements are left untouched.",
    },
    qty_on_hand: {
      type: "string",
      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,
    },
    income_account_ref_value: {
      type: "string",
      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).",
      optional: true,
    },
    income_account_ref_name: {
      type: "string",
      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.Name` from that object for `IncomeAccountRef.name`. 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).",
      optional: true,
    },
    type: {
      type: "string",
      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",
      ],
    },
    asset_account_ref_value: {
      type: "string",
      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`.",
      optional: true,
    },
    asset_account_ref_name: {
      type: "string",
      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.Name` from that object for `AssetAccountRef.name`.",
      optional: true,
    },
    inv_start_date: {
      type: "string",
      description: "Date of opening balance for the inventory transaction. Required when creating an `Item.Type=Inventory`. Required for `Inventory` item types.",
      optional: true,
    },
    expense_account_ref_value: {
      type: "string",
      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).",
      optional: true,
    },
    expense_account_ref_name: {
      type: "string",
      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.Name` from that object for `ExpenseAccountRef.name`. 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).",
      optional: true,
    },
    Sku: {
      type: "string",
      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,
    },
    sales_tax_included: {
      type: "string",
      description: "True if the sales tax is included in the item amount, and therefore is not calculated for the transaction.",
      optional: true,
    },
    sales_tax_code_ref_value: {
      type: "string",
      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`.",
      optional: true,
    },
    sales_tax_code_ref_name: {
      type: "string",
      description: "Name 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.Name` from that object for `SalesTaxCodeRef.name`.",
      optional: true,
    },
    class_ref_value: {
      type: "string",
      description: "Id of the referenced Class for the item. Query the Class name list resource to determine the appropriate object for this reference. Use `Class.Id` from that object for `ClassRef.value`.",
      optional: true,
    },
    class_ref_name: {
      type: "string",
      description: "Name of the referenced Class for the item. Query the Class name list resource to determine the appropriate object for this reference. Use `Class.Name` from that object for `ClassRef.name`.",
      optional: true,
    },
    purchase_tax_tncluded: {
      type: "boolean",
      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",
      description: "Description of the item.",
      optional: true,
    },
    abatement_rate: {
      type: "string",
      description: "Sales tax abatement rate for India locales.",
      optional: true,
    },
    reverse_charge_rate: {
      type: "string",
      description: "Sales tax reverse charge rate for India locales.",
      optional: true,
    },
    sub_item: {
      type: "boolean",
      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",
      description: "If true, transactions for this item are taxable. Applicable to US companies, only.",
      optional: true,
    },
    UQC_display_text: {
      type: "string",
      description: "Text to be displayed on customer's invoice to denote the Unit of Measure (instead of the standard code).",
      optional: true,
    },
    reorder_point: {
      type: "string",
      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,
    },
    purchase_desc: {
      type: "string",
      description: "Purchase description for the item.",
      optional: true,
    },
    pref_vendor_ref_value: {
      type: "string",
      optional: true,
    },
    pref_vendor_ref_name: {
      type: "string",
      optional: true,
    },
    active: {
      type: "boolean",
      description: "If true, the object is currently enabled for use by QuickBooks.",
      optional: true,
    },
    UQC_id: {
      type: "string",
      description: "Id of Standard Unit of Measure (UQC:Unique Quantity Code) of the item according to GST rule.",
      optional: true,
    },
    purchase_tax_code_ref_value: {
      type: "string",
      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`.",
      optional: true,
    },
    purchase_tax_code_ref_name: {
      type: "string",
      description: "An identifying name for the purchase tax code object being referenced by value and is derived from the field that holds the common name of that object. \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.Name` from that object for `PurchaseTaxCodeRef.name`.",
      optional: true,
    },
    service_type: {
      type: "string",
      description: "Sales tax service type for India locales.",
      optional: true,
    },
    purchase_cost: {
      type: "string",
      description: "Amount paid when buying or ordering the item, as expressed in the home currency.",
      optional: true,
    },
    unit_price: {
      type: "string",
      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,
    },
    tax_classification_ref_value: {
      type: "string",
      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",
      optional: true,
    },
    tax_classification_ref_name: {
      type: "string",
      description: "An identifying name for the Tax classification object being referenced by value and is derived from the field that holds the common name of that object.",
      optional: true,
    },
    parent_ref_name: {
      type: "string",
      description: "An identifying name for the parent item object being referenced by `value` and is derived from the field that holds the common name of that object.\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,
    },
    parent_ref_value: {
      type: "string",
      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,
    },
    minorversion: {
      type: "string",
      description: "Use the minorversion query parameter in REST API requests to access a version of the API other than the generally available version. For example, to invoke minor version 1 of the JournalEntry entity, issue the following request:\n`https://quickbooks.api.intuit.com/v3/company/<realmId>/journalentry/entityId?minorversion=1`",
      optional: true,
    },
  },
  async run({ $ }) {
  //See Quickbooks API docs at: https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/item#full-update-an-item

    if (!this.item_id || !this.name || !this.sync_token || this.track_qty_on_hand === undefined || this.sparse_update === undefined) {
      throw new Error("Must provide item_id, name, sync_token, and track_qty_on_hand parameters.");
    }

    //Prepares the request body
    var data = {
      sparse: this.sparse_update,
      Id: this.item_id,
      Name: this.name,
      QtyOnHand: this.qty_on_hand,
      SyncToken: this.sync_token,
      IncomeAccountRef: {
        value: this.income_account_ref_value,
        name: this.income_account_ref_name,
      },
      Type: this.type,
      AssetAccountRef: {
        value: this.asset_account_ref_value,
        name: this.asset_account_ref_name,
      },
      InvStartDate: this.inv_start_date,
      ExpenseAccountRef: {
        value: this.expense_account_ref_value,
        name: this.expense_account_ref_name,
      },
      Sku: this.Sku,
      SalesTaxIncluded: this.sales_tax_included,
      TrackQtyOnHand: this.track_qty_on_hand,
      SalesTaxCodeRef: {
        value: this.sales_tax_code_ref_value,
        name: this.sales_tax_code_ref_name,
      },
      ClassRef: {
        value: this.class_ref_value,
        name: this.class_ref_name,
      },
      PurchaseTaxIncluded: this.purchase_tax_tncluded,
      Description: this.description,
      AbatementRate: this.abatement_rate,
      ReverseChargeRate: this.reverse_charge_rate,
      SubItem: this.sub_item,
      Taxable: this.taxable,
      UQCDisplayText: this.UQC_display_text,
      ReorderPoint: this.reorder_point,
      PurchaseDesc: this.purchase_desc,
      PrefVendorRef: {
        value: this.pref_vendor_ref_value,
        name: this.pref_vendor_ref_name,
      },
      Active: this.active,
      UQCId: this.UQC_id,
      PurchaseTaxCodeRef: {
        value: this.purchase_tax_code_ref_value,
        name: this.purchase_tax_code_ref_name,
      },
      ServiceType: this.service_type,
      PurchaseCost: this.purchase_cost,
      UnitPrice: this.unit_price,
      TaxClassificationRef: {
        value: this.tax_classification_ref_value,
        name: this.tax_classification_ref_name,
      },
    };

    if (this.pref_vendor_ref_value || this.parent_ref_name) {
      data["ParentRef"] = {
        value: this.parent_ref_value,
        name: this.parent_ref_name,
      };
    }

    //Sends the request against Quickbooks Sandbox API
    return await axios($, {
      method: "post",
      url: `https://sandbox-quickbooks.api.intuit.com/v3/company/${this.quickbooks_sandbox.$auth.company_id}/item`,
      headers: {
        "Authorization": `Bearer ${this.quickbooks_sandbox.$auth.oauth_access_token}`,
        "accept": "application/json",
        "content-type": "application/json",
      },
      data,
      params: {
        minorversion: this.minorversion,
      },
    });
  },
};

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
Quickbooks Sandboxquickbooks_sandboxappThis component uses the Quickbooks Sandbox app.
item_iditem_idstring

Id of the item to update.

namenamestring

Name of the item. This value must be unique.

sync_tokensync_tokenstring

Version number of the entity. Required for the update operation.

track_qty_on_handtrack_qty_on_handboolean

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.

sparse_updatesparse_updatestring

When set to true, sparse updating provides the ability to update a subset of properties for a given object; only elements specified in the request are updated. Missing elements are left untouched.

qty_on_handqty_on_handstring

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_valueincome_account_ref_valuestring

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.

income_account_ref_nameincome_account_ref_namestring

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.Name from that object for IncomeAccountRef.name. See specifications for the IncomeAccountRef parameters in the Create an item page.

typetypestringSelect a value from the drop down menu:InventoryGroupServiceNonInventory
asset_account_ref_valueasset_account_ref_valuestring

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.

asset_account_ref_nameasset_account_ref_namestring

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.Name from that object for AssetAccountRef.name.

inv_start_dateinv_start_datestring

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

expense_account_ref_valueexpense_account_ref_valuestring

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.

expense_account_ref_nameexpense_account_ref_namestring

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.Name from that object for ExpenseAccountRef.name. See specifications for the ExpenseAccountRef parameters in the Create an item page.

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_includedsales_tax_includedstring

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

sales_tax_code_ref_valuesales_tax_code_ref_valuestring

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.

sales_tax_code_ref_namesales_tax_code_ref_namestring

Name 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.Name from that object for SalesTaxCodeRef.name.

class_ref_valueclass_ref_valuestring

Id of the referenced Class for the item. Query the Class name list resource to determine the appropriate object for this reference. Use Class.Id from that object for ClassRef.value.

class_ref_nameclass_ref_namestring

Name of the referenced Class for the item. Query the Class name list resource to determine the appropriate object for this reference. Use Class.Name from that object for ClassRef.name.

purchase_tax_tncludedpurchase_tax_tncludedboolean

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_rateabatement_ratestring

Sales tax abatement rate for India locales.

reverse_charge_ratereverse_charge_ratestring

Sales tax reverse charge rate for India locales.

sub_itemsub_itemboolean

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_textUQC_display_textstring

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

reorder_pointreorder_pointstring

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_descpurchase_descstring

Purchase description for the item.

pref_vendor_ref_valuepref_vendor_ref_valuestring
pref_vendor_ref_namepref_vendor_ref_namestring
activeactiveboolean

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

UQC_idUQC_idstring

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

purchase_tax_code_ref_valuepurchase_tax_code_ref_valuestring

The ID for the referenced purchase tax code object as found in the Id field of the object payload.

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

purchase_tax_code_ref_namepurchase_tax_code_ref_namestring

An identifying name for the purchase tax code object being referenced by value and is derived from the field that holds the common name of that object.

Reference 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.Name from that object for PurchaseTaxCodeRef.name.

service_typeservice_typestring

Sales tax service type for India locales.

purchase_costpurchase_coststring

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

unit_priceunit_pricestring

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_ref_valuetax_classification_ref_valuestring

The ID for the referenced Tax classification object as found in the Id field of the object payload.

Tax 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

tax_classification_ref_nametax_classification_ref_namestring

An identifying name for the Tax classification object being referenced by value and is derived from the field that holds the common name of that object.

parent_ref_nameparent_ref_namestring

An identifying name for the parent item object being referenced by value and is derived from the field that holds the common name of that object.

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

parent_ref_valueparent_ref_valuestring

The ID for the referenced parent item object as found in the Id field of the object payload.

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

minorversionminorversionstring

Use the minorversion query parameter in REST API requests to access a version of the API other than the generally available version. For example, to invoke minor version 1 of the JournalEntry entity, issue the following request:
https://quickbooks.api.intuit.com/v3/company/<realmId>/journalentry/entityId?minorversion=1

Action Authentication

Quickbooks Sandbox uses OAuth authentication. When you connect your Quickbooks Sandbox account, Pipedream will open a popup window where you can sign into Quickbooks Sandbox 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 Sandbox API.

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

com.intuit.quickbooks.accountingopenidprofileemail

About Quickbooks Sandbox

Online accounting software

More Ways to Connect Quickbooks Sandbox + Slack

Create Customer with Quickbooks Sandbox API on New Message In Channels from Slack API
Slack + Quickbooks Sandbox
 
Try it
Create Invoice with Quickbooks Sandbox API on New Message In Channels from Slack API
Slack + Quickbooks Sandbox
 
Try it
Create Bill Payment with Quickbooks Sandbox API on New Message In Channels from Slack API
Slack + Quickbooks Sandbox
 
Try it
Create Purchase with Quickbooks Sandbox API on New Message In Channels from Slack API
Slack + Quickbooks Sandbox
 
Try it
Get Customer with Quickbooks Sandbox API on New Message In Channels from Slack API
Slack + Quickbooks Sandbox
 
Try it
New Message In Channels (Instant) from the Slack API

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

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

Emit new event when a new channel is created.

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

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

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

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

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

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

 
Try it
Send Message with the Slack API

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

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

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

 
Try it
Reply to a Message Thread with the Slack API

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

 
Try it
Add Emoji Reaction with the Slack API

Add an emoji reaction to a message. See the documentation

 
Try it
Archive Channel with the Slack API

Archive a channel. 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.