Actions68
- Aircraft Actions
- Get
- Get List
- Get by Registration
- Get Identification
- Get Status
- Get Maintenance
- Get Flights
- Get APU
- Get Avionics
- Get Engine
- Get Airframe
- Get Additional Equipment
- Get Features
- Get Interior
- Get Exterior
- Get Leases
- Get Company Relationships
- Get Pictures
- Get Bulk Aircraft Export
- Get Bulk Aircraft Export Paged
- Get Condensed Snapshot
- Get Condensed Owner Operators
- Get Condensed Owner Operators Paged
- Get Event List
- Get Event List Paged
- Get History List
- Get History List Paged
- Get Flight Data
- Get Relationships
- Company Actions
- Contact Actions
- Market Actions
- Get Model Intelligence
- Get Model Market Trends
- Get Model Operation Costs
- Get Model Performance Specs
- Get Account Info
- Get Product Codes
- Get Airframe Types
- Get Make Type List
- Get Weight Class Types
- Get Airframe JNIQ Sizes
- Get Aircraft Make List
- Get Aircraft Model List
- Get Company Business Types
- Get Aircraft Company Relationship Types
- Get Event Categories
- Get Event Types
- Get Airport List
- Get State List
- Get Country List
- Get Aircraft Lifecycle Status
- Get Aircraft History Transaction Types
Overview
This node provides access to JetNet aviation industry data, specifically for the Aircraft resource with the Get Event List Paged operation. It retrieves a paginated list of events related to aircraft from the JetNet database. This is useful for users who want to analyze or monitor aircraft event histories in manageable chunks rather than retrieving all events at once.
Typical use cases include:
- Aviation analysts tracking maintenance or operational events for specific aircraft.
- Fleet managers reviewing recent event logs for aircraft under their control.
- Market researchers studying event trends across multiple aircraft over time.
For example, you can fetch the second page of aircraft event records with 50 events per page to review recent incidents or updates without overwhelming your system with too much data at once.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool description: either automatically based on resource and operation, or manually provide a custom description. |
| Description | (Shown only if "Set Manually" is selected) A text description explaining what this tool does, helping language models understand its purpose better. |
Output
The node outputs a JSON string containing:
success: Boolean indicating if the API call was successful.resource: The resource name, here"aircraft".operation: The operation name, here"getEventListPaged".data: The actual paginated event list data returned by JetNet's API.timestamp: ISO timestamp of when the response was generated.
The data field contains the paged list of aircraft events as provided by JetNet, typically including event details such as event type, date, description, and related aircraft identifiers.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for JetNet's service, which must be configured in n8n.
- The node makes authenticated HTTP requests to JetNet's API endpoints.
- Network connectivity to
https://customer.jetnetconnect.comis required.
Troubleshooting
- Missing Required IDs: If the aircraft ID or registration number is not provided when required, the node throws errors like "Aircraft ID is required for this operation" or "Registration number is required for this operation". Ensure these inputs are correctly supplied.
- Unknown Operation or Resource: Errors such as "Unknown aircraft operation" or "Unknown resource" indicate invalid or unsupported parameters. Verify that the resource is set to "aircraft" and the operation to "getEventListPaged".
- Authentication Failures: If API credentials are missing or invalid, requests will fail. Confirm that the JetNet API key credential is properly configured in n8n.
- API Rate Limits or Network Issues: Temporary failures may occur due to network problems or API rate limits. Retrying after some time or checking network connectivity can help.
Links and References
- JetNet Official Website
- JetNet API documentation (not publicly included; refer to your JetNet account resources)
- n8n Documentation on Creating Custom Nodes