QuickBooks

QuickBooks Online is designed to help you manage your business finances with ease.

Integrate the QuickBooks API with the Firebase Admin SDK API

Setup the QuickBooks API trigger to run a workflow which integrates with the Firebase Admin SDK API. Pipedream's integration platform allows you to integrate QuickBooks and Firebase Admin SDK remarkably fast. Free for developers.

Create Bill with Quickbooks API on New Child Object in a Realtime Database from Firebase Admin SDK API
Firebase Admin SDK + QuickBooks
 
Try it
Create Bill with Quickbooks API on New Document in Firestore Collection from Firebase Admin SDK API
Firebase Admin SDK + QuickBooks
 
Try it
Create Customer with Quickbooks API on New Child Object in a Realtime Database from Firebase Admin SDK API
Firebase Admin SDK + QuickBooks
 
Try it
Create Customer with Quickbooks API on New Document in Firestore Collection from Firebase Admin SDK API
Firebase Admin SDK + QuickBooks
 
Try it
Create Invoice with Quickbooks API on New Child Object in a Realtime Database from Firebase Admin SDK API
Firebase Admin SDK + QuickBooks
 
Try it
New Child Object in a Realtime Database from the Firebase Admin SDK API

Emit new event when a new child object is discovered within a specific path

 
Try it
New Document in Firestore Collection from the Firebase Admin SDK API

Emit new event when a structured query returns new documents

 
Try it
Create Bill with the QuickBooks API

Creates a bill. See docs here

 
Try it
Create Document with the Firebase Admin SDK API

Creates a New Document. See the docs here

 
Try it
Create Customer with the QuickBooks API

Creates a customer. See docs here

 
Try it
Create Firebase Realtime Database Record with the Firebase Admin SDK API

Creates or replaces a child object within your Firebase Realtime Database. See the docs here

 
Try it
Create Invoice with the QuickBooks API

Creates an invoice. See docs here

 
Try it

Overview of QuickBooks

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.

Connect QuickBooks

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    quickbooks: {
      type: "app",
      app: "quickbooks",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://quickbooks.api.intuit.com/v3/company/${this.quickbooks.$auth.company_id}/companyinfo/${this.quickbooks.$auth.company_id}`,
      headers: {
        Authorization: `Bearer ${this.quickbooks.$auth.oauth_access_token}`,
        "accept": `application/json`,
        "content-type": `application/json`,
      },
    })
  },
})

Overview of Firebase Admin SDK

The Firebase Admin SDK API provides powerful backend functionality for Firebase apps. It allows you to interact with Firebase services like Firestore, Firebase Realtime Database, Firebase Storage, and Firebase Authentication directly from a server. With Pipedream, you can harness this API to automate complex workflows, respond to Firebase events in real-time, and integrate with countless other services.

Connect Firebase Admin SDK

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import admin from "firebase-admin"
export default defineComponent({
  props: {
    firebase_admin_sdk: {
      type: "app",
      app: "firebase_admin_sdk",
    },
  },
  async run({ steps, $ }) {
    // Enter values for the following parameters below this code step,
    // These get passed to the initializeApp method below.
    const { 
      projectId, 
      clientEmail, 
      privateKey,
      region = "firebaseio.com",
    } = this.firebase_admin_sdk.$auth

    // Before passing the privateKey to the initializeApp constructor,
    // we have to replace newline characters with literal newlines
    const formattedPrivateKey = privateKey.replace(/\\n/g, "\n")

    // See https://firebase.google.com/docs/reference/admin/node/admin.credential.html#cert
    if (!admin.apps.length) {
      admin.initializeApp({
        credential: admin.credential.cert({
          projectId,
          clientEmail,
          privateKey: formattedPrivateKey,
        }),
        databaseURL: `https://${projectId}-default-rtdb.${region}/`,
      })
    }
  },
})