JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node integrates with the JetNet aviation data service to retrieve detailed aviation-related information. Specifically, for the Contact resource with the Get List operation, it fetches a list of contact records from the JetNet database. This is useful in scenarios where users need to access comprehensive contact details related to the aviation industry, such as contacts associated with aircraft, companies, or other aviation entities.

Practical examples include:

  • Retrieving all contacts for outreach or marketing campaigns within the aviation sector.
  • Accessing contact lists filtered by company name, phone number, or other criteria.
  • Integrating aviation contact data into CRM systems or AI agents for enhanced decision-making.

Properties

Name Meaning
Tool Description Choose how to set the tool's description:
- Set Automatically: The description is generated based on the selected resource and operation.
- Set Manually: You provide a custom description for the tool.
Description A text field to manually describe what this tool does. Useful when "Set Manually" is chosen above. Default explains that the tool accesses JetNet aviation industry data including aircraft specs, company info, contacts, and market intelligence.

Output

The node outputs a JSON string containing the following structure:

{
  "success": true,
  "resource": "contact",
  "operation": "getList",
  "data": [ /* array of contact objects returned by JetNet API */ ],
  "timestamp": "ISO 8601 timestamp"
}
  • success: Indicates if the API call was successful.
  • resource: The resource queried ("contact").
  • operation: The operation performed ("getList").
  • data: An array of contact records retrieved from JetNet. Each record contains detailed contact information as provided 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",
  "resource": "contact",
  "operation": "getList",
  "timestamp": "ISO 8601 timestamp"
}

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for authenticating with the JetNet service.
  • The node makes HTTP requests to the JetNet API endpoints at https://customer.jetnetconnect.com.
  • Proper configuration of the API authentication token and bearer token is necessary in n8n credentials setup.

Troubleshooting

  • Missing Required IDs: For some operations (notably "get" by ID), missing required identifiers like Contact ID will cause errors. Ensure the correct ID is provided.
  • Unknown Operation or Resource: If an unsupported operation or resource is selected, the node throws an error indicating the unknown operation/resource.
  • API Authentication Errors: Invalid or expired API tokens will result in authorization failures. Verify and update API credentials.
  • Network Issues: Connectivity problems to the JetNet API endpoint can cause request failures. Check network access and proxy settings if applicable.
  • Malformed Input Data: The node attempts to parse input parameters; invalid JSON or unexpected formats may cause errors.

Links and References

  • JetNet Official Website – For more information about the data service.
  • JetNet API documentation (not publicly included here) – Consult your JetNet account for API usage details and endpoint specifications.

Discussion