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

@mosesgottlieb/n8n-nodes-onoffice

v0.1.0

Published

n8n node for OnOffice integration

Readme

n8n-nodes-onoffice

This is an n8n community node. It lets you use OnOffice in your n8n workflows.

OnOffice is a CRM system specifically designed for real estate businesses. This node allows you to interact with the OnOffice API.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Manual installation

  1. Clone the repository
  2. Navigate to the directory and run npm install
  3. Build the node with npm run build
  4. Link the node to your n8n installation with npm link
  5. In your n8n installation directory, run npm link onoffice-n8n-node

Docker installation

  1. Clone the repository
  2. Navigate to the directory
  3. Run ./start-docker.sh to build and start the Docker container
  4. Access n8n at http://localhost:5678

Features

This node supports the following resources and operations in OnOffice:

Estate Resource

  • Get: Retrieve a single estate by ID
  • Get Many: Retrieve multiple estates with filtering options
  • Create: Create a new estate
  • Update: Update an existing estate

Address Resource

  • Get: Retrieve a single address by ID
  • Get Many: Retrieve multiple addresses with filtering options
  • Create: Create a new address
  • Update: Update an existing address

Relation Resource

  • Get: Retrieve a single relation by ID
  • Get Many: Retrieve multiple relations with filtering options
  • Create: Create a new relation between an estate and an address
  • Delete: Delete an existing relation

Credentials

For authentication, you'll need to provide:

  1. API Token: The API token from your OnOffice account
  2. API Secret: The API secret from your OnOffice account

You can obtain these credentials from your OnOffice account under API settings.

API Documentation

This node is built using the OnOffice API v1 which follows a specific format for all requests.

Request Format

All API calls to OnOffice follow this format:

  • HTTP Method: POST
  • Content-Type: application/json
  • Authentication: Using HMAC authentication with your API token and secret

Examples

Get Estate Example

{
  "actionid": "1623838783-123456",
  "resourceid": "",
  "resourcetype": "estate",
  "identifier": "",
  "actiontype": "urn:onoffice-de-ns:smart:2.5:smartml:action:read",
  "parameters": {
    "resourceid": ["123"],
    "data": ["Id", "objekttitel", "objektnr_extern"]
  }
}

List Estates Example

{
  "actionid": "1623838783-123456",
  "resourceid": "",
  "resourcetype": "estate",
  "identifier": "",
  "actiontype": "urn:onoffice-de-ns:smart:2.5:smartml:action:read",
  "parameters": {
    "data": ["Id", "objekttitel", "objektnr_extern"],
    "filter": {
      "vermarktungsart": "kauf"
    },
    "listlimit": 50,
    "listoffset": 0
  }
}

Create Address Example

{
  "actionid": "1623838783-123456",
  "resourceid": "",
  "resourcetype": "address",
  "identifier": "",
  "actiontype": "urn:onoffice-de-ns:smart:2.5:smartml:action:create",
  "parameters": {
    "data": {
      "name": "Doe",
      "vorname": "John",
      "email": "[email protected]"
    }
  }
}

Create Relation Example

{
  "actionid": "1623838783-123456",
  "resourceid": "",
  "resourcetype": "relation",
  "identifier": "",
  "actiontype": "urn:onoffice-de-ns:smart:2.5:smartml:action:create",
  "parameters": {
    "data": {
      "estateid": "12345",
      "addressid": "67890",
      "type": "owner"
    }
  }
}

Resources

Known Limitations

  • The node currently only supports basic estate, address, and relation operations
  • Complex queries may require additional customization
  • File uploads are not yet supported

Troubleshooting

  • If you encounter HMAC authentication errors, verify your API token and secret
  • Ensure your JSON input for filters and data is properly formatted
  • Check OnOffice API documentation for field-specific format requirements

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

npm pack