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 Contact resource with the Get Other Listings operation. It retrieves other company listings associated with a particular contact from the JetNet database.
Typical use cases include:
- Enriching contact records with additional company affiliations.
- Gathering comprehensive contact-related company information for aviation industry analysis.
- Integrating detailed contact-company relationship data into workflows or AI agents.
For example, you might use this node to fetch all other companies a contact is listed under, helping sales or marketing teams understand the full scope of a contact's business relationships.
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 string describing the tool’s purpose to help 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 JSON data structured as follows:
{
"success": true,
"resource": "contact",
"operation": "getOtherListings",
"data": { /* response data from JetNet API */ },
"timestamp": "ISO 8601 timestamp"
}
success: Boolean indicating if the API call was successful.resource: The resource queried ("contact").operation: The operation performed ("getOtherListings").data: Contains the actual data returned by the JetNet API for other company listings related to the contact.timestamp: The time when the response was generated.
If an error occurs, the output JSON will contain:
{
"success": false,
"error": "Error message",
"resource": "contact",
"operation": "getOtherListings",
"timestamp": "ISO 8601 timestamp"
}
No binary data output is produced by this node.
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 in n8n credentials is necessary.
Troubleshooting
- Missing Contact ID: The operation requires a valid contact ID (
contactIdorid). If not provided, the node throws an error: "Contact ID is required for this operation". - Unknown Resource or Operation: Errors like "Unknown contact operation" or "Unknown resource" indicate misconfiguration of resource or operation parameters.
- API Authentication Errors: Ensure that the API key and tokens are correctly configured; otherwise, authorization errors may occur.
- Network Issues: Connectivity problems to the JetNet API endpoint can cause request failures.
- Malformed Input Data: Input parameters must be correctly formatted; otherwise, the API may reject the request.
To resolve errors:
- Verify that the contact ID is supplied.
- Check API credentials and permissions.
- Confirm network connectivity.
- Review input parameters for correctness.
Links and References
- JetNet Official Website
- JetNet API documentation (not publicly included here; consult your JetNet account resources)
- n8n HTTP Request Node documentation for understanding underlying HTTP calls: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/