JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

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 (contactId or id). 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

Discussion