Itemize

Invoice Data Extraction, Reconciliation, and Verification

Go to site
Explore
/
Apps
/
Itemize

Itemize API Integrations

Build and run workflows using the Itemize API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With Itemize, you can build apps to manage your finances, keep track of your belongings, or even monitor your home. Here are just a few examples of what you can build:

  • A budgeting app to help you track your spending and save money
  • An inventory app to keep track of your belongings and their value
  • A home security app to monitor your home and family's safety
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    itemize: {
      type: "app",
      app: "itemize",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://sandbox.proapi.itemize.com/api/enterprise/v1/accounts/[ACCOUNT-ID]`,
      auth: {
        username: `${this.itemize.$auth.api_token}`,
        password: ``,
      },
    })
  },
})

Authentication

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