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 Identification operation. It retrieves detailed identification information about a specific aircraft by its unique ID.
Typical use cases include:
- Fetching official identification details of an aircraft for verification or record-keeping.
- Integrating aircraft identification data into aviation management systems.
- Enriching datasets with authoritative aircraft identity attributes for analytics or reporting.
For example, given an aircraft ID, this node will return comprehensive identification data such as registration, serial numbers, and other key identifiers from the JetNet database.
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 explaining what the tool does. |
| Description | (Shown only if "Set Manually" is selected) A text field to specify a detailed description of the tool's purpose, helping language models understand its function better. |
Output
The node outputs a JSON string containing:
success: Boolean indicating if the request was successful.resource: The resource name, here"aircraft".operation: The operation performed, here"getIdentification".data: The actual identification data returned from JetNet API for the specified aircraft.timestamp: ISO timestamp of when the response was generated.
Example output structure (formatted for clarity):
{
"success": true,
"resource": "aircraft",
"operation": "getIdentification",
"data": {
/* Aircraft identification details from JetNet */
},
"timestamp": "2024-06-xxTxx:xx:xx.xxxZ"
}
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the JetNet service.
- The node makes HTTP requests to the JetNet API endpoint at
https://customer.jetnetconnect.com. - Proper configuration of the API authentication token and bearer token is necessary within n8n credentials.
Troubleshooting
- Missing Aircraft ID Error: If the aircraft ID is not provided, the node throws an error:
"Aircraft ID is required for this operation". Ensure you supply a valid aircraft ID parameter. - Unknown Operation or Resource: Errors like
"Unknown aircraft operation"or"Unknown resource"indicate misconfiguration of resource or operation parameters. - API Authentication Failures: If credentials are invalid or missing, API requests will fail. Verify that the API key and tokens are correctly configured.
- Malformed Input Data: The node attempts to parse input parameters; incorrect formats may cause errors. Provide inputs as expected (e.g., JSON object or string with correct fields).
Links and References
- JetNet Official Website — For more information about the data source.
- JetNet API documentation (not publicly linked here) — Consult your JetNet account or support for API usage details.