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-personio-hr

v0.1.8

Published

n8n community node for Personio HR platform (v2 API)

Readme

n8n-nodes-personio-hr

Community node for n8n to interact with the Personio HR platform via their v2 API.

Installation

In n8n Desktop / Self-Hosted

Go to Settings > Community Nodes and install:

n8n-nodes-personio-hr

Manual Installation

cd ~/.n8n/nodes
npm install n8n-nodes-personio-hr

Then restart n8n.

Credentials

You need a Personio API client ID and client secret. Create them in Personio > Settings > Integrations > API credentials.

When configuring the credential in n8n, enter:

  • Client ID - Your API client ID
  • Client Secret - Your API client secret

The node handles token authentication automatically (OAuth2 Client Credentials flow with expirable tokens).

Supported Resources & Operations

Personio HR (Regular Node)

| Resource | Operations | |---|---| | Person | Create, Get, Get Many, Update, Delete | | Employment | Get, Get Many, Update | | Absence Period | Create, Get, Get Many, Get Breakdowns, Update, Delete | | Absence Type | Get, Get Many | | Attendance Period | Create, Get, Get Many, Update, Delete | | Project | Create, Get, Get Many, Update, Delete, Get Members, Add Members, Remove Members | | Document | Get Many, Download (binary), Update, Delete | | Compensation | Create, Get Many, Get Types, Create Type | | Organization | Get Legal Entities, Get Legal Entity |

Personio Trigger (Webhook Node)

Automatically registers webhooks with Personio for real-time events:

  • Person: created, updated, deleted
  • Employment: created, updated, deleted
  • Absence Period: created, updated, deleted
  • Attendance Period: created, updated, deleted
  • Compensation: created, updated, deleted
  • Project: created, updated, deleted
  • Custom reports: created

Webhooks are auto-registered on workflow activation and cleaned up on deactivation.

Features

  • Cursor-based pagination on all list endpoints with "Return All" toggle
  • Custom Attributes support on Person Create/Update (dynamic key-value pairs for instance-specific fields like date of birth, phone, address, etc.)
  • Nested body formats handled correctly for the Personio v2 API (employments, positions, supervisors, org units, cost centers)
  • Binary file download for documents
  • Proper Accept headers for DELETE/PATCH operations (application/problem+json)

Custom Attributes

Personio stores many personal details (date of birth, phone, nationality, etc.) as custom attributes with instance-specific IDs. The Person Create and Update operations include a "Custom Attributes" section where you can add multiple attribute rows.

Single value:

  • Attribute ID: laptop_serial_number
  • Value: ABC-123

Array value (tags/multi-select):

  • Attribute ID: peripheries
  • Value: ["mouse","keyboard","monitor"]

Known Limitations

  • Compensation Create returns 403 Forbidden - this is a Personio-side issue (also fails in their own API playground)
  • Organization - Cost Centers and Workplaces endpoints return 404 (not live in Personio API despite being documented). Only Legal Entities are available.
  • Org Units - No list endpoint exists, so you need to know the org unit ID beforehand
  • Recruiting API - Not included (known to be unstable)

API Scopes Required

Ensure your Personio API credentials have the following scopes enabled:

  • persons:read, persons:write
  • employments:read, employments:write
  • absences:read, absences:write
  • attendances:read, attendances:write
  • projects:read, projects:write
  • documents:read, documents:write
  • compensations:read, compensations:write
  • webhooks:read, webhooks:write (for the Trigger node)

License

MIT