JetNet icon

JetNet

Interact with JetNet API for aviation industry data

Overview

The node interacts with the JetNet API to retrieve aviation industry data related to companies. Specifically, for the Company resource and the Get List operation, it fetches a list of companies based on various optional filters such as company ID, name, parent company, type, and business type.

This operation is useful when you want to obtain a filtered list of companies from the JetNet database, for example:

  • Retrieving all companies of a certain type or business sector.
  • Filtering companies by their parent company.
  • Getting a subset of companies matching specific criteria for further processing or analysis.

Practical examples include integrating company data into CRM systems, market research workflows, or aviation industry analytics pipelines.

Properties

Name Meaning
Return All Whether to return all results or only up to a given limit (boolean)
Limit Maximum number of results to return if not returning all (number between 1 and 1000)
Additional Fields Collection of optional filters to narrow down the company list:
- Company ID Filter by a specific company ID (number)
- Company Name Filter by company name (string)
- Parent ID Filter by parent company ID (number)
- Company Type Filter by company type (string)
- Business Type Filter by business type (string)

Output

The output is an array of JSON objects, each representing a company record returned by the JetNet API according to the applied filters. The exact structure of each company object depends on the API response but typically includes company details such as IDs, names, types, and other metadata.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the JetNet API via an API key credential configured in n8n.
  • The node sends HTTP requests to https://customer.jetnetconnect.com endpoints.
  • Proper API authentication token must be provided through the node's credentials configuration.

Troubleshooting

  • Empty Results: If no companies are returned, verify that your filter criteria in "Additional Fields" are correct and match existing data.
  • API Authentication Errors: Ensure the API key credential is valid and has necessary permissions.
  • Limit Exceeded: If you request more records than allowed, reduce the "Limit" or enable "Return All" carefully considering performance.
  • Invalid Parameter Values: Check that numeric fields like Company ID and Parent ID are numbers and string fields are properly formatted.

Links and References

Discussion