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 integrates with the JetNet aviation data service to retrieve detailed information about aircraft, companies, contacts, and market intelligence. Specifically, for the Aircraft - Get Interior operation, it fetches the interior configuration and details of a specified aircraft from the JetNet database.
This node is beneficial in scenarios where users need comprehensive aviation data for analysis, reporting, or AI-driven decision-making. For example, an aviation maintenance company might use this node to automatically gather interior specifications of aircraft they service, or an aviation market analyst could extract interior features to assess aircraft configurations across fleets.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool's description: - Set Automatically: The description is auto-generated based on the selected resource and operation. - Set Manually: Allows manual input of a custom description explaining what the tool does. |
| Description | (Visible only if "Set Manually" is chosen) A text field to provide a specific description of the tool’s purpose, helping language models produce better results. Default: "Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence". |
Output
The node outputs a JSON object with the following structure:
{
"success": true,
"resource": "aircraft",
"operation": "getInterior",
"data": { /* Aircraft interior configuration details */ },
"timestamp": "ISO 8601 timestamp"
}
success: Indicates whether the API call was successful.resource: The resource type queried ("aircraft").operation: The operation performed ("getInterior").data: Contains the detailed interior configuration and related information of the specified aircraft as returned by JetNet.timestamp: The time when the response was generated.
If an error occurs, the output will be:
{
"success": false,
"error": "Error message describing the issue",
"resource": "aircraft",
"operation": "getInterior",
"timestamp": "ISO 8601 timestamp"
}
The node does not output binary data.
Dependencies
- Requires access to the JetNet API service.
- Requires an API authentication token and security token credential configured in n8n to authorize requests to JetNet.
- The node makes HTTP GET requests to JetNet endpoints, specifically
/api/Aircraft/getInterior/{aircraftId}for this operation. - Proper configuration of credentials and network access to JetNet's API endpoint (
https://customer.jetnetconnect.com) is necessary.
Troubleshooting
- Missing Aircraft ID: The operation requires an aircraft identifier (
aircraftIdorid). If missing, the node throws an error: "Aircraft ID is required for this operation". Ensure you provide a valid aircraft ID. - Invalid Credentials: Authentication failures may occur if the API key or tokens are incorrect or expired. Verify and update your JetNet API credentials in n8n.
- Network Issues: Connectivity problems to the JetNet API endpoint can cause request failures. Check your network settings and firewall rules.
- Unknown Operation or Resource: Errors like "Unknown aircraft operation" or "Unknown resource" indicate misconfiguration of the resource or operation parameters.
- Malformed Input: If input parameters are not properly formatted JSON or lack required fields, the node may fail. Validate inputs before execution.
Links and References
- JetNet Official Website
- JetNet API documentation (access typically requires JetNet account)
- n8n HTTP Request Node Documentation (for understanding underlying HTTP calls): https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/