nido

n8n nodes for Nido - Property Management Platform API

Package Information

Downloads: 1 weekly / 21 monthly
Latest Version: 1.0.0
Author: Nido

Documentation

n8n-nodes-nido

Nido Logo

Official n8n community node for Nido - The modern property management platform for residential buildings and condominiums.

Automate your building management workflows by connecting Nido to 400+ apps in n8n!

npm version
License: MIT

Features

  • Full API Coverage: Access all Nido resources (buildings, residents, posts, events, incidents, bookings, and more)
  • Real-time Triggers: React to 30+ webhook events in real-time
  • Easy Authentication: Simple API key authentication
  • Pagination Support: Automatically handle large datasets
  • Multi-environment: Connect to production, development, or self-hosted instances

Installation

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-nido and confirm

Manual Installation

npm install n8n-nodes-nido

Credentials

  1. Go to your Nido dashboard
  2. Navigate to Admin > API Keys
  3. Create a new API key (requires Professional or Enterprise plan)
  4. Copy the key and add it to n8n credentials

Available Resources

Nido Node

Resource Operations
Organization Get
Building Get, Get Many
Resident Get, Get Many
Channel Get, Get Many
Message Create, Get, Get Many
Post Create, Get, Get Many, Update, Delete
Event Create, Get, Get Many, Update, Delete
Poll Get, Get Many, Get Results
Incident Create, Get, Get Many, Update
Asset Get, Get Many
Booking Create, Get, Get Many, Update, Delete
Classified Create, Get, Get Many, Update, Delete
Document Get, Get Many
Notification Get, Get Many, Mark Read, Mark All Read, Delete
Council Project Create, Get, Get Many, Update
Council Vote Get, Get Many
Council Meeting Create, Get, Get Many, Update
Council Task Create, Get, Get Many, Update

Nido Trigger Node

React to events in real-time:

Incidents

  • incident.created - New incident reported
  • incident.updated - Incident updated
  • incident.resolved - Incident resolved

Posts & Communication

  • post.created - New post published
  • post.updated - Post updated
  • post.emergency - Emergency post created
  • message.created - New message in channel

Events

  • event.created - New event created
  • event.registration - Event registration
  • event.cancelled - Event cancelled

Residents

  • resident.joined - New resident joined
  • resident.approved - Resident approved

Bookings

  • booking.created - New booking made
  • booking.confirmed - Booking confirmed
  • booking.cancelled - Booking cancelled

Polls

  • poll.created - New poll created
  • poll.closed - Poll closed
  • poll.vote - Vote cast

Council

  • council.project.created - New project
  • council.project.status_changed - Project status changed
  • council.vote.started - Council vote started
  • council.vote.closed - Council vote closed
  • council.meeting.scheduled - Meeting scheduled
  • council.task.assigned - Task assigned
  • council.task.completed - Task completed

Other

  • classified.created - New classified ad
  • classified.sold - Item sold
  • document.created - Document uploaded
  • package.received - Package received
  • package.picked_up - Package picked up
  • security.alert - Security alert

Example Workflows

1. Slack Notification for Urgent Incidents

[Nido Trigger: incident.created]
    -> [IF: priority = "urgent"]
    -> [Slack: Send Message to #urgences]

Use case: Alert building managers immediately when urgent incidents are reported.

2. Google Calendar Sync for Events

[Nido Trigger: event.created]
    -> [Google Calendar: Create Event]
    -> [Nido: Update Event with calendar link]

Use case: Automatically create Google Calendar events for building activities.

3. Email Digest of Weekly Posts

[Schedule: Every Monday 9am]
    -> [Nido: Get Many Posts (last 7 days)]
    -> [HTML: Generate digest template]
    -> [SendGrid: Send email to residents]

Use case: Send a weekly summary of building news to all residents.

4. Jira Integration for Incidents

[Nido Trigger: incident.created]
    -> [Jira: Create Issue]
    -> [Nido: Update Incident with Jira link]

Use case: Track building incidents in your property management Jira board.

5. Twilio SMS for Emergency Posts

[Nido Trigger: post.emergency]
    -> [Nido: Get Many Residents]
    -> [Loop]
        -> [Twilio: Send SMS]

Use case: Send SMS alerts to all residents for emergency announcements.

6. Airtable Database Sync

[Schedule: Every hour]
    -> [Nido: Get Many Incidents (status=open)]
    -> [Airtable: Upsert Records]

Use case: Maintain an Airtable dashboard of open incidents.

7. Automated Booking Confirmation

[Nido Trigger: booking.created]
    -> [Nido: Get Resident]
    -> [SendGrid: Send confirmation email]
    -> [Google Calendar: Block time slot]

Use case: Send confirmation emails and sync bookings to calendars.

8. Council Meeting Minutes to Notion

[Nido Trigger: council.meeting.completed]
    -> [Nido: Get Council Meeting]
    -> [Notion: Create Page with minutes]
    -> [Slack: Notify #conseil]

Use case: Automatically archive meeting minutes in Notion.

9. Resident Onboarding Workflow

[Nido Trigger: resident.approved]
    -> [SendGrid: Send welcome email]
    -> [Slack: Notify #accueil]
    -> [Notion: Add to resident directory]
    -> [Mailchimp: Add to newsletter]

Use case: Automate the onboarding process for new residents.

10. Package Notification System

[Nido Trigger: package.received]
    -> [Nido: Get Resident]
    -> [Twilio: Send SMS]
    -> [Wait: 24 hours]
    -> [IF: not picked up]
        -> [SendGrid: Send reminder email]

Use case: Notify residents of packages and send reminders.

Rate Limits

  • Professional Plan: 1,000 requests/hour
  • Enterprise Plan: 10,000 requests/hour

Rate limit info is included in response headers:

  • X-RateLimit-Limit: Your limit
  • X-RateLimit-Remaining: Remaining requests
  • Retry-After: Seconds until reset (when limited)

Support

License

MIT License - see LICENSE for details.


Made with love by the Nido team

Discussion