Description
n8n-nodes-palgate
n8n community node for PAL Gate parking management system integration.
Installation
npm install n8n-nodes-palgate
Or install via n8n Community Nodes settings in your n8n instance.
Supported Operations
✅ Fully Working
| Resource | Operation | Status | Description |
|———-|———–|——–|————-|
| Auth | Test Connection | ✅ Working | Verify credentials and connection to PAL Gate (uses minimal API call) |
| Places | Get All | ✅ Working | Get hierarchical tree of places |
| Places | Get One | ✅ Working | Get details of a specific place |
| Users | Get All | ✅ Working | Get all users in a place |
| Users | Add | ✅ Working | Add a new user to a place |
| Users | Update | ✅ Working | Update user information |
| Groups | Get All | ✅ Working | Get groups for a place |
| Devices | Get Info | ✅ Working | Get device information |
⚠️ Limited Support
| Resource | Operation | Status | Notes |
|———-|———–|——–|——-|
| Users | Delete | ✅ Working | Fixed in v1.0.28 – handles both string and number phone formats |
| Devices | Open Gate | ⚠️ Use carefully | Triggers physical gate operation |
❌ Not Available
| Resource | Operation | Status | Notes |
|———-|———–|——–|——-|
| Vehicles | All Operations | ❌ Not supported | API endpoints not available – may be added in future updates |
Configuration
Credentials
The node requires PAL Gate API credentials:
- Username/Email: Your PAL Gate account email
- Password: Your PAL Gate account password
- API URL:
https://portal.pal-es.com(default, automatically configured) - Place ID: Found in PAL Gate portal URL or settings (format: UUID)
- Device ID: For device operations, found in device settings
Testing the Connection
You can verify your credentials and connection in two ways:
1. From the node: Add a PAL Gate node → choose Resource: Auth → Operation: Test Connection. Run the node; if it succeeds, credentials and connection are valid.
2. When saving credentials: In the credential dialog, use the Test / Verify button (if shown by your n8n version) to validate the connection before saving.
Required Parameters
API Endpoints
Verified Working Endpoints
Authentication:
POST /api1/user/login1Places:
GET /api1/places-tree
GET /api1/place/{placeId}
Users:
GET /api1/place/{placeId}/users
POST /api1/place/{placeId}/user
DELETE /api1/place/{placeId}/users
Groups:
GET /api1/place/{placeId}/groups
Devices:
GET /api1/device/{deviceId}
Error Handling
The node includes comprehensive error handling:
Error Message Examples
Safety Features
Delete Operations
Delete operations include multiple safety layers:
1. Phone Number Validation: Required, format check, non-empty validation
2. Type Handling: Accepts both string and number types (fixed in v1.0.28)
3. Automatic Formatting: Converts phone numbers to 972XXXXXXXXX format
4. Empty Array Prevention: Prevents sending empty phones arrays
5. Detailed Logging: Full audit trail of all delete operations
6. Warning Messages: Critical warnings about API behavior
✅ Fixed in v1.0.28: Delete operation now correctly handles phone numbers passed as numbers (from n8n expressions like 972{{ $json.M_phone }}).
Add Operations
Usage Examples
Add a User
1. Select resource: User
2. Select operation: Add
3. Enter Place ID
4. Enter Phone number (required)
5. Enter First Name (required)
6. Enter Last Name (required)
7. Optionally add Cars
Get All Users in a Place
1. Select resource: User
2. Select operation: Find or Get Many
3. Enter Place ID
4. Optionally add filter (for Find operation)
Update a User
1. Select resource: User
2. Select operation: Update or Update By Phone
3. Enter Place ID
4. Enter Phone number
5. Update desired fields
Known Limitations
API Limitations
1. Vehicle Operations: Vehicle endpoints return 404. This is an API limitation, not a node issue.
2. Delete Operation: ✅ Fixed in v1.0.28 – now handles both string and number phone formats correctly.
3. Empty Phone Numbers: API accepts empty phone numbers and generates random IDs. Node validates to prevent this.
Workarounds
Testing
The node has been tested against the live PAL Gate API. Run the test suite locally for detailed results (see Development below).
Troubleshooting
Delete Operation Issues
Error 4101: “Check delete number list”
Other Delete Issues:
Support
Node Issues
For issues with this n8n node:
API Issues
For PAL Gate API issues:
Development
Building
npm run build
Testing
node test/automated-tests.js
Linting
npm run lint
License
MIT
Author
PAL Portal Team
Version
1.0.28
Recent Updates
v1.0.28 (2026-01-13)
v1.0.27 (2026-01-13)
v1.0.26 (2026-01-13)
v1.0.25 (2026-01-13)
Changelog
See CHANGELOG.md for version history.