JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to JetNet aviation industry data, specifically allowing retrieval of company accreditations and certifications when using the "Company" resource with the "Get Company Certifications" operation. It is useful for users who need detailed certification information about aviation companies, such as compliance status, accreditation records, or regulatory certifications.

Practical examples include:

  • Verifying a company's certifications before engaging in business.
  • Aggregating certification data for market analysis or compliance audits.
  • Integrating company certification details into aviation management or CRM systems.

Properties

Name Meaning
Tool Description Option to set the tool description either automatically based on the selected resource and operation, or manually by entering a custom description. Options: "Set Automatically", "Set Manually".
Description A string field to manually describe what the tool does. This is shown only if "Set Manually" is selected for Tool Description. Default text explains that the tool accesses JetNet aviation data including aircraft specs, company info, contacts, and market intelligence.

Output

The node outputs a JSON object with the following structure:

{
  "success": true,
  "resource": "company",
  "operation": "getCompanyCertifications",
  "data": { /* The actual company certifications data returned from JetNet API */ },
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating whether the API call was successful.
  • resource: The resource used ("company").
  • operation: The operation performed ("getCompanyCertifications").
  • data: Contains the retrieved company accreditations and certifications data from JetNet.
  • timestamp: The time when the response was generated.

If an error occurs, the output JSON will have success set to false and include an error message describing the issue.

The node does not output binary data.

Dependencies

  • Requires an API key credential for JetNet (an API authentication token).
  • The node makes HTTP requests to the JetNet Connect API endpoint at https://customer.jetnetconnect.com.
  • Proper configuration of the API credentials within n8n is necessary for authentication.
  • The node uses standard HTTP headers including Bearer token authorization.

Troubleshooting

  • Missing Required IDs: For this operation, a valid Company ID must be provided. If missing, the node throws an error: "Company ID is required for this operation".
  • Authentication Errors: If the API key or token is invalid or expired, the request will fail. Ensure the API credentials are correctly configured and active.
  • Unknown Resource or Operation: Selecting an unsupported resource or operation will cause errors like "Unknown company operation" or "Unknown resource".
  • Network Issues: Connectivity problems to the JetNet API endpoint can cause request failures.
  • Malformed Input: Input parameters should be correctly formatted; otherwise, parsing errors may occur.

To resolve errors:

  • Verify all required input fields, especially the Company ID.
  • Check API credentials and renew tokens if needed.
  • Confirm network connectivity.
  • Review the exact operation and resource selections.

Links and References

Discussion