Actions77
- Accessory Actions
- Authentication Actions
- Backup & Restore Actions
- Config Editor Actions
- Platform Tool Actions
- Plugin Actions
- Server Actions
- Restart Server
- Restart Child Bridge
- Stop Child Bridge
- Start Child Bridge
- Get Pairing Info
- Reset Homebridge Accessory
- Reset Cached Accessories
- Get Cached Accessories
- Delete Cached Accessories
- Delete Cached Accessory
- Get Device Pairings
- Get Device Pairing
- Delete Device Pairing
- Get Unused Port
- Get Network Interfaces
- Get Bridge Network Interfaces
- Set Bridge Network Interfaces
- Setup Wizard Actions
- Status Actions
- User Actions
Overview
The node interacts with the Homebridge API, specifically focusing on backup and restore operations in this context. The "Get Scheduled Backup" operation retrieves details about a specific scheduled backup by its unique identifier. This is useful for users who want to programmatically check the status or metadata of backups they have scheduled within their Homebridge environment.
Practical examples include:
- Automating monitoring of scheduled backups to ensure they are set up correctly.
- Integrating backup status checks into broader home automation workflows.
- Triggering notifications or further actions based on backup information retrieved.
Properties
| Name | Meaning |
|---|---|
| Access Token | An access token obtained from a prior login operation or entered manually for authentication. |
| Backup ID | The unique identifier of the scheduled backup to retrieve. This is required for the operation. |
Output
The output JSON contains the details of the requested scheduled backup. This typically includes metadata such as backup timing, status, and configuration related to that backup. The exact structure depends on the Homebridge API response but generally provides all relevant information about the scheduled backup.
No binary data output is indicated for this operation.
Dependencies
- Requires an active connection to the Homebridge API server.
- Needs an API access token for authentication, which can be provided either via a connected login node or manually entered.
- The base URL for the Homebridge API must be configured in the node credentials.
Troubleshooting
- Invalid or missing Access Token: If the access token is incorrect or not provided, the API call will fail authentication. Ensure the token is valid and current.
- Backup ID not found: Providing an incorrect or non-existent backup ID will result in an error. Verify the backup ID before making the request.
- API connectivity issues: Network problems or incorrect base URL settings can cause failures. Confirm the Homebridge server URL and network accessibility.
- Permission errors: Insufficient permissions associated with the access token may prevent retrieval of backup details.
Links and References
- Homebridge API Documentation (for detailed API endpoints and responses)
- n8n documentation on HTTP Request Node for understanding API interaction basics