JetNet icon

JetNet

Interact with JetNet API for aviation industry data

Overview

This node integrates with the JetNet API to retrieve detailed aviation industry data related to aircraft, companies, contacts, and market intelligence. Specifically, for the Aircraft - Get Status operation, it fetches the current status information of a specified aircraft by its unique ID.

Typical use cases include:

  • Monitoring the operational or registration status of an aircraft.
  • Integrating real-time aircraft status data into aviation management workflows.
  • Automating reporting or alerting based on aircraft status changes.

For example, an operator could use this node to automatically check the status of an aircraft before scheduling maintenance or flights.

Properties

Name Meaning
Aircraft ID The unique identifier of the aircraft whose status is to be retrieved.

Output

The output is a JSON object containing the status information of the specified aircraft as returned by the JetNet API. The exact structure depends on the API response but typically includes fields such as operational status, registration details, and other relevant status indicators.

No binary data output is produced by this operation.

Example output snippet (conceptual):

{
  "aircraftId": "12345",
  "status": "Active",
  "registrationExpiry": "2025-12-31",
  "lastInspectionDate": "2023-06-15",
  ...
}

Dependencies

  • Requires an active connection to the JetNet API service.
  • Requires configuration of an API authentication token credential in n8n to authorize requests.
  • The base URL for API requests is https://customer.jetnetconnect.com.
  • The node uses HTTP GET requests to fetch data from endpoints like /api/Aircraft/getStatus/{aircraftId}/{apiToken}.

Troubleshooting

  • Common issues:

    • Invalid or missing Aircraft ID parameter will cause the request to fail.
    • Expired or incorrect API authentication token will result in authorization errors.
    • Network connectivity issues may prevent successful API calls.
  • Error messages:

    • "Unauthorized" or "Invalid API token": Check that the API key credential is correctly configured and valid.
    • "Aircraft not found": Verify that the provided Aircraft ID exists and is correct.
    • "Request timed out": Ensure network connectivity and API availability.
  • To resolve errors, verify input parameters, ensure credentials are up to date, and confirm the JetNet API service status.

Links and References

Discussion