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 companies, aircraft, contacts, and market intelligence. Specifically, for the Company resource and the Get Company Certifications operation, it fetches accreditations, memberships, and certifications associated with a specified company.

Use cases include:

  • Verifying company credentials and certifications in aviation-related workflows.
  • Automating compliance checks by retrieving up-to-date certification data.
  • Enriching company profiles with official accreditation information for reporting or analysis.

Example: Given a company ID, the node can pull all certifications that the company holds, which can then be used to validate vendor qualifications or regulatory compliance.

Properties

Name Meaning
Company ID The unique identifier of the company whose certifications you want to retrieve.

Output

The output is a JSON object (or array of objects) containing the company's certifications, accreditations, and memberships as returned by the JetNet API endpoint /api/Company/getCompanyCertifications/{companyId}.

  • The exact structure depends on the API response but typically includes details such as certification names, issuing organizations, dates, and statuses.
  • No binary data output is involved in this operation.

Dependencies

  • Requires an active connection to the JetNet API service.
  • Requires an API authentication token credential configured in n8n to authorize requests.
  • The base URL for API requests is https://customer.jetnetconnect.com.
  • The node uses HTTP GET method to fetch company certifications.

Troubleshooting

  • Common issues:

    • Invalid or missing Company ID: Ensure the Company ID provided is correct and exists in the JetNet database.
    • Authentication errors: Verify that the API key credential is correctly set up and has necessary permissions.
    • Network connectivity problems: Confirm that your environment can reach the JetNet API endpoint.
  • Error messages:

    • "Unauthorized" or similar indicates invalid API credentials; reconfigure the API key.
    • "Not Found" or empty results may mean the Company ID does not exist or has no certifications.
    • Timeout or network errors suggest connectivity issues; check firewall and proxy settings.

Links and References

  • JetNet Official Website — For more information about the JetNet service.
  • JetNet API documentation (not publicly included here) — Consult your JetNet API provider for detailed API specs and response formats.

Discussion