JetNet icon

JetNet

Interact with JetNet API for aviation industry data

Overview

This node interacts with the JetNet API to retrieve aviation industry data related to aircraft, specifically supporting the operation Get Condensed Owner Operators Paged for the Aircraft resource. This operation fetches paginated condensed information about aircraft owner/operators, which is useful when you need summarized ownership and operator details in manageable pages rather than a full dataset at once.

Typical use cases include:

  • Integrating aircraft ownership data into aviation management systems.
  • Building dashboards that display owner/operator summaries with pagination controls.
  • Performing batch processing or analysis on subsets of owner/operator data without overwhelming system resources.

For example, you might use this node to retrieve 100 owner/operator records per page and iterate through pages to process or display all available data efficiently.

Properties

Name Meaning
Page Size Number of results per page (minimum 1, maximum 1000). Controls how many records are returned in one request.
Page Page number to retrieve (minimum 1). Specifies which page of results to fetch.

These properties allow you to control pagination when retrieving condensed owner/operator data.

Output

The output is JSON data representing the paged condensed owner/operator information retrieved from the JetNet API. The structure typically includes an array of owner/operator summary objects, each containing key details about aircraft owners and operators in a condensed form.

If multiple items are returned, each item is output as a separate JSON object in the node's output array.

No binary data output is indicated for this operation.

Dependencies

  • Requires an active connection to the JetNet API via an API key credential configured in n8n.
  • The node uses the base URL https://customer.jetnetconnect.com for API requests.
  • Proper API authentication token must be provided through the configured credentials.

Troubleshooting

  • Common issues:

    • Invalid or missing API authentication token will cause authorization errors.
    • Requesting a page number beyond the available range may return empty results.
    • Exceeding the maximum allowed page size (1000) will likely result in validation errors.
  • Error messages:

    • Authorization errors indicate problems with the API key; verify and update credentials.
    • Validation errors on parameters suggest adjusting "Page Size" and "Page" inputs within allowed ranges.
    • Network or connectivity errors require checking internet access and JetNet API availability.
  • To handle errors gracefully, enable the node’s "Continue On Fail" option to prevent workflow interruption and capture error details in output.

Links and References


This summary focuses exclusively on the Aircraft resource and the Get Condensed Owner Operators Paged operation as requested.

Discussion