Invoiced

Accounts / receivables platform

Go to site
Explore
/
Apps
/
Invoiced

Invoiced API Integrations

Build and run workflows using the Invoiced 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

Invoiced is a powerful API that allows you to easily create and manage invoices and payments. With Invoiced, you can:

  • Create and manage invoices
  • Accept payments
  • Automate collections
  • Send reminders
  • And much more!

Here are some examples of what you can build with the Invoiced API:

  • A billing system for your business
  • An invoicing system for your clients
  • A payment gateway for your website
  • An accounting system for your personal finances
  • And much more!
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: {
    invoiced: {
      type: "app",
      app: "invoiced",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.invoiced.com/invoices`,
      auth: {
        username: `${this.invoiced.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

Authentication

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

An API key can be obtained by signing in to invoiced.com, and then going to Settings → Developers → API Keys. More detail in docs.