npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-qonekto

v2.0.0

Published

n8n community node to work with the Qonekto API

Downloads

617

Readme

n8n-nodes-qonekto

This is an n8n community node that lets you use the Qonekto API in your n8n workflows.

Qonekto provides an HTTP API for managing customers and related resources. This node wraps common endpoints so you can automate tasks in n8n.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

The node exposes the following resources and operations.

  • Kunde (Customer)

    • Create Kunde — POST /kunde
    • Filter Kunden — POST /kunde/filter
    • List Kunden — GET /kunde
    • Show Kunde — GET /kunde/{ameise_id}
    • Update Kunde — PUT /kunde/{ameise_id}
    • Upsert Kunde — PUT /kunde/upsert
    • Upload File — POST /kunde/{kunde_ameise_id}/archiveintrag
    • Create File — POST /kunde/{kunde_ameise_id}/archiveintrag
  • Kunden-Tag (Customer Tags)

    • List Customer Tags — GET /kunde/{ameise_id}/tags
    • Set Customer Tags — PUT /kunde/{ameise_id}/tags
    • Add Customer Tags — POST /kunde/{ameise_id}/tags
    • Remove Customer Tags — DELETE /kunde/{ameise_id}/tags
  • Listen (Lookup lists)

    • Anreden — GET /anreden
    • Gesellschaften — GET /gesellschaften
    • Kunden Detail Felder — GET /kunden_detail_felder
    • Länder — GET /laender
    • Rechtsformen — GET /rechtsformen
    • Sparten — GET /sparten
    • Status — GET /status
    • Vermittler — GET /vermittler
    • Zahlweisen — GET /zahlweisen
  • Panda

    • Create A Customer Link — POST /panda/customer-links
    • Create A Tender — POST /panda/tenders
    • Get Active Tenders For A Customer — GET /panda/tenders
    • Get All Customer Links — GET /panda/customer-links
  • Pipeline

    • Trigger Pipeline Import From CRM — GET /pipeline/{pipeline_id}/trigger-from-crm
  • Misc

    • Who Am I — GET /whoami

Note: The exact input fields for each operation are provided in the node’s parameters within n8n (see the Fields panel when configuring the node).

Credentials

This node uses a bearer token, a tenant identifier, and a selectable base URL to authenticate against the Qonekto API.

  • API Token (required): Used as a Bearer token for the Authorization header.
  • Tenant (required): Your Qonekto tenant identifier used to build the base URL.
  • Base URL (required): The API host to use. Currently available option: Production (https://app.qonekto.de/api/).

Behavior

  • Effective Base URL: {base_url}{tenant}
  • Credential Test: The credential test performs a request to GET /whoami to verify access.

How to obtain credentials

  • Visit the Admin > API Tokens page in your Qonekto backend
  • Create a new Token and enter a corresponding name, for example "n8n automation"

Security

  • n8n stores credentials securely. Avoid hardcoding tokens; configure them via n8n’s Credentials UI.

Resources