JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to JetNet aviation industry data, specifically for the Contact resource with the Get Phone Numbers operation. It retrieves phone number information associated with a specific contact in the JetNet database.

Typical use cases include:

  • Fetching contact phone numbers for aviation professionals or companies.
  • Integrating contact phone details into CRM systems or communication workflows.
  • Enriching aviation contact records with up-to-date phone information.

For example, you might use this node to get all phone numbers linked to a particular contact ID to enable direct calling or messaging from your automation.

Properties

Name Meaning
Tool Description Choose how to set the tool description:
- Set Automatically: Description is auto-generated based on resource and operation.
- Set Manually: Enter a custom description explaining what the tool does.
Description A text field to manually describe the tool's purpose (only shown if "Set Manually" is selected). Default is: "Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence".

Output

The node outputs a JSON object with the following structure:

{
  "success": true,
  "resource": "contact",
  "operation": "getPhoneNumbers",
  "data": { /* phone numbers data returned by JetNet API */ },
  "timestamp": "2024-06-xxTxx:xx:xx.xxxZ"
}
  • success: Boolean indicating if the request was successful.
  • resource: The resource queried ("contact").
  • operation: The operation performed ("getPhoneNumbers").
  • data: Contains the phone numbers information retrieved from JetNet for the specified contact.
  • timestamp: ISO timestamp of when the response was generated.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for authenticating with the JetNet service.
  • The node makes HTTP requests to the JetNet API endpoint at https://customer.jetnetconnect.com.
  • Proper configuration of the API authentication token and bearer token is necessary within n8n credentials.

Troubleshooting

  • Missing Contact ID: The operation requires a valid contact ID (contactId or id). If not provided, the node will throw an error:
    "Contact ID is required for this operation"
    Resolution: Ensure the input includes a valid contact identifier.

  • Authentication Errors: If API credentials are invalid or missing, requests will fail.
    Resolution: Verify that the API key and tokens are correctly configured in n8n credentials.

  • Unknown Resource or Operation: If the resource or operation parameters are incorrect, errors like "Unknown contact operation" or "Unknown resource" may occur.
    Resolution: Confirm that the resource is set to "contact" and operation to "getPhoneNumbers".

  • API Request Failures: Network issues or JetNet API downtime can cause failures.
    Resolution: Check network connectivity and JetNet service status.

Links and References

  • JetNet Official Website – For more information about the JetNet aviation data services.
  • JetNet API documentation (not publicly included here) – Consult your JetNet API provider for detailed API specs and usage guidelines.

Discussion