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 market intelligence data, specifically enabling retrieval of available product codes associated with the user's account. It is useful for users who need to integrate detailed aviation market data into their workflows, such as aircraft manufacturers, brokers, or analysts looking to automate access to standardized product codes used in the aviation industry.
For example, a user might employ this node to fetch all valid product codes before processing or validating aviation-related transactions or reports, ensuring consistent use of industry-standard identifiers.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool's description: "Set Automatically" uses a predefined description based on resource and operation; "Set Manually" allows entering a custom description. |
| Description | (Shown only if "Set Manually" is selected) A text field to provide a specific description of what this tool does, helping language models produce better results. |
Output
The node outputs a JSON object with the following structure:
success: Boolean indicating whether the API call was successful.resource: The resource name, here always"market".operation: The operation name, here"getProductCodes".data: The actual response data from the JetNet API containing the list of available product codes for the account.timestamp: ISO 8601 timestamp of when the response was generated.
Example output snippet:
{
"success": true,
"resource": "market",
"operation": "getProductCodes",
"data": {
/* product codes data from JetNet */
},
"timestamp": "2024-06-01T12:00:00.000Z"
}
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the JetNet Connect API.
- The node makes HTTP requests to the JetNet service endpoint at
https://customer.jetnetconnect.com. - Proper configuration of the API authentication token and security token is necessary within n8n credentials.
Troubleshooting
- Missing or invalid credentials: The node requires valid API authentication tokens. Ensure that the API key credential is correctly configured and active.
- Unknown resource or operation errors: If the resource or operation parameters are incorrect or unsupported, the node will throw an error. Verify that the resource is set to
"market"and operation to"getProductCodes". - Network or API errors: Connectivity issues or JetNet service downtime may cause request failures. Check network connectivity and JetNet service status.
- Malformed input data: Although this operation does not require input parameters, any unexpected inputs could cause errors. Use default or empty inputs as appropriate.
Links and References
- JetNet Connect API Documentation (requires login)
- Aviation industry standards for product codes (consult relevant aviation regulatory bodies or industry groups)