Quipu

Online bookkeeping service

Integrate the Quipu API with the Go API

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

Create Contact with the Quipu API

Creates a new contact. See the docs.

 
Try it
Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
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

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 Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}