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 and their relationships. Specifically, for the Aircraft resource and the Get Relationships operation, it fetches all relationship data associated with a particular aircraft from the JetNet database.
Use cases include:
- Accessing comprehensive relationship data of an aircraft such as linked companies, contacts, or other related entities.
- Enriching aviation datasets with relational context for analytics or operational workflows.
- Automating retrieval of connected aviation data for AI agents or business intelligence tools.
Example: Given an aircraft ID, this node can return all related entities (companies, contacts, etc.) connected to that aircraft, enabling deeper insights into ownership, maintenance, or operational networks.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool description: - Set Automatically: Description is auto-generated based on resource and operation. - Set Manually: Provide a custom description for the tool. |
| Description | A text field to manually specify what the tool does. This helps language models understand the tool's purpose better. Only shown if "Set Manually" is selected for Tool Description. 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": "getRelationships",
"data": { /* Relationship data returned by JetNet API */ },
"timestamp": "ISO 8601 timestamp"
}
success: Boolean indicating if the API call was successful.resource: The resource queried ("aircraft").operation: The operation performed ("getRelationships").data: Contains the detailed relationships data for the specified aircraft as returned by the JetNet API.timestamp: The time when the response was generated.
If an error occurs, the output JSON will have:
{
"success": false,
"error": "Error message describing the problem",
"resource": "aircraft",
"operation": "getRelationships",
"timestamp": "ISO 8601 timestamp"
}
No binary data output is involved in this operation.
Dependencies
- Requires an active JetNet API credential with appropriate permissions.
- The node makes authenticated HTTP requests to the JetNet API endpoints.
- Network access to
https://customer.jetnetconnect.comis required. - Proper configuration of the API key and security token in n8n credentials is necessary.
Troubleshooting
- Missing Aircraft ID: The operation requires an aircraft identifier. If not provided, the node throws an error:
"Aircraft ID is required for this operation". Ensure you supply a valid aircraft ID. - Authentication Errors: If API credentials are invalid or expired, requests will fail. Verify your API key and tokens in the n8n credential settings.
- Unknown Operation or Resource: Using unsupported operations or resources will cause errors like
"Unknown aircraft operation: getRelationships"or"Unknown resource: aircraft". Confirm you select the correct resource and operation. - Network Issues: Connectivity problems to the JetNet API endpoint will result in request failures. Check network/firewall settings.
- Malformed Input: Input parameters must be correctly formatted JSON or strings containing required fields like
aircraftId.
Links and References
- JetNet Official Website
- JetNet API documentation (not publicly included; refer to your JetNet account or support)
- n8n Documentation: Creating Custom Nodes
This summary focuses on the Aircraft resource with the Get Relationships operation as requested.