Invoiced is a powerful API that allows you to easily create and manage invoices and payments. With Invoiced, you can:
Here are some examples of what you can build with the Invoiced API:
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: ``,
},
})
},
})
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.