← Quipu

Create Income Ticket with Quipu API

Pipedream makes it easy to connect APIs for Quipu and 1000+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Create Income Ticket with the Quipu API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Create a workflow to Create Income Ticket with the Quipu API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Create Income Ticket action
    1. Connect your Quipu account
    2. Configure Recipient Name
    3. Configure Number
    4. Configure Issued
    5. Configure Paid At
    6. Select a Payment Method
    7. Optional- Configure Items
    8. Optional- Configure Tags
    9. Optional- Select a Accounting Category
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Create Income Ticket with Quipu API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Quipu
 
Try it
Create Income Ticket with Quipu API on New Submission from Typeform API
Typeform + Quipu
 
Try it
Create Income Ticket with Quipu API on Custom Events from Zoom API
Zoom + Quipu
 
Try it
Create Income Ticket with Quipu API on New Submission (Instant) from Jotform API
Jotform + Quipu
 
Try it
Create Income Ticket with Quipu API on New Custom Webhook Events from Stripe API
Stripe + Quipu
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Create Income Ticket on Quipu
Description:Creates a new income ticket. [See the docs](http://quipuapp.github.io/api-v1-docs/#creating-a-ticket).
Version:0.0.1
Key:quipu-create-income-ticket

Code

import app from "../../quipu.app.mjs";
import { ConfigurationError } from "@pipedream/platform";

export default {
  key: "quipu-create-income-ticket",
  name: "Create Income Ticket",
  description: "Creates a new income ticket. [See the docs](http://quipuapp.github.io/api-v1-docs/#creating-a-ticket).",
  version: "0.0.1",
  type: "action",
  props: {
    app,
    recipientName: {
      type: "string",
      label: "Recipient Name",
      description: "The recipient name for the ticket.",
    },
    number: {
      propDefinition: [
        app,
        "number",
      ],
    },
    issued: {
      propDefinition: [
        app,
        "issued",
      ],
    },
    paidAt: {
      propDefinition: [
        app,
        "paidAt",
      ],
    },
    paymentMethod: {
      propDefinition: [
        app,
        "paymentMethod",
      ],
    },
    items: {
      propDefinition: [
        app,
        "items",
      ],
      optional: true,
    },
    tags: {
      propDefinition: [
        app,
        "tags",
      ],
      optional: true,
    },
    accountingCategory: {
      propDefinition: [
        app,
        "accountingCategory",
      ],
      optional: true,
    },
  },
  async run({ $ }) {
    const attributes = {
      "kind": "income",
      "recipient_name": this.recipientName,
      "number": this.number,
      "issue_date": this.issued,
      "paid_at": this.paidAt,
      "payment_method": this.paymentMethod,
      "tags": (this.tags && this.tags.join(", ")) || undefined,
    };
    const relationships = {};
    if (this.accountingCategory) {
      relationships.accounting_category = {
        "data": {
          "id": this.accountingCategory,
          "type": "accounting_categories",
        },
      };
    }
    if (this.items) {
      let items = this.items;
      if (typeof (this.items) === "string") {
        items = JSON.parse(items);
      }
      if (!Array.isArray(items)) {
        throw new ConfigurationError("Items must to be an array.");
      }
      relationships.items = {
        "data": items,
      };
    }
    const ticket = await this.app.createTicket($, attributes, relationships);
    $.export("$summary", `Successfully created ticket with ID "${ticket.id}"`);
    return ticket;
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
QuipuappappThis component uses the Quipu app.
Recipient NamerecipientNamestring

The recipient name for the ticket.

Numbernumberstring

The invoice number.

Issuedissuedstring

The issue date of the invoice, ISO 8601 format. Example: 2019-07-26.

Paid AtpaidAtstring

Date of payment, ISO 8601 format. Example: 2019-07-26.

Payment MethodpaymentMethodstringSelect a value from the drop down menu:{ "label": "Cash", "value": "cash" }{ "label": "Bank Transfer", "value": "bank_transfer" }{ "label": "Bank Card", "value": "bank_card" }{ "label": "Direct Debit", "value": "direct_debit" }{ "value": "PayPal", "label": "paypal" }{ "label": "Check", "value": "check" }{ "label": "Factoring", "value": "factoring" }
Itemsitemsstring

An array of objects as the following example:
[{"type": "book_entry_items", "attributes": {"concept": "Screws", "unitary_amount": "0.50", "quantity":30, "vat_percent":21, "retention_percent":0}}, {"type": "book_entry_items", "attributes": {"concept": "Nuts", "unitary_amount": "0.35", "quantity":30, "vat_percent":21, "retention_percent":0}}]
see docs here.

Tagstagsstring[]

Add tags to the invoice.

Accounting CategoryaccountingCategorystringSelect a value from the drop down menu.

Authentication

Quipu uses OAuth authentication. When you connect your Quipu account, Pipedream will open a popup window where you can sign into Quipu and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Quipu API.

Pipedream requests the following authorization scopes when you connect your account:

ecommerce

About Quipu

Online bookkeeping service

More Ways to Use Quipu

Actions

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