Quipu

Online bookkeeping service

Integrate the Quipu API with the Zoom Admin API

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

Create Contact with Quipu API on Account Created from Zoom Admin API
Zoom Admin + Quipu
 
Try it
Create Income Invoice with Quipu API on Account Created from Zoom Admin API
Zoom Admin + Quipu
 
Try it
Create Income Ticket with Quipu API on Account Created from Zoom Admin API
Zoom Admin + Quipu
 
Try it
Create Contact with Quipu API on Custom Events from Zoom Admin API
Zoom Admin + Quipu
 
Try it
Create Contact with Quipu API on Meeting Started from Zoom Admin API
Zoom Admin + Quipu
 
Try it
Account Created from the Zoom Admin API

Emits an event each time a sub-account is created in your master account

 
Try it
Custom Events from the Zoom Admin API

Listen for any events tied to your Zoom account

 
Try it
Meeting Started from the Zoom Admin API

Emits an event each time a meeting starts in your Zoom account

 
Try it
Account Updated from the Zoom Admin API

Emits an event each time your master account or sub-account profile is updated

 
Try it
Recording Completed from the Zoom Admin API

Emits an event each time a recording is ready for viewing in your Zoom account

 
Try it
Create Contact with the Quipu API

Creates a new contact. See the docs.

 
Try it
Create Income Invoice with the Quipu API

Creates a new income invoice. See the docs.

 
Try it
Create Income Ticket with the Quipu API

Creates a new income ticket. See the docs.

 
Try it
Add meeting registrant with the Zoom Admin API

Register a participant for a meeting. See the docs here

 
Try it
Add webinar panelist with the Zoom Admin API

Register a panelist for a webinar. See the docs here

 
Try it

Overview of Quipu

With the Quipu API you can create powerful, feature-rich and fully-adaptable
invoicing applications for your business.

Examples of you can create with the Quipu API:

  • Invoice generators
  • Invoice tracking systems
  • Document and customer management solutions
  • Customizable invoice layout solutions
  • Automated customer onboarding
  • Document signing solutions
  • Automated payroll solutions
  • Customizable G/L integrations
  • Automated notifications and email reminders
  • Tax management tools
  • Real-time reporting dashboards
  • Automated document conversion solutions
  • Automated payment solutions

The Quipu API is used by small and large businesses of all kinds, anywhere in
the world. Whether you're a freelancer, online merchant, or a large enterprise,
Quipu API has the tools to get the job done quickly and efficiently.

So think no more, let Quipu API do the work for you and save you time and
money!

Connect Quipu

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: {
    quipu: {
      type: "app",
      app: "quipu",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://getquipu.com/contacts`,
      headers: {
        Authorization: `Bearer ${this.quipu.$auth.oauth_access_token}`,
        "Accept": `application/vnd.quipu.v1+json`,
      },
    })
  },
})

Connect Zoom Admin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    zoom_admin: {
      type: "app",
      app: "zoom_admin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom_admin.$auth.oauth_access_token}`,
      },
    })
  },
})