Actions68
- Aircraft Actions
- Get
- Get List
- Get by Registration
- Get Identification
- Get Status
- Get Maintenance
- Get Flights
- Get APU
- Get Avionics
- Get Engine
- Get Airframe
- Get Additional Equipment
- Get Features
- Get Interior
- Get Exterior
- Get Leases
- Get Company Relationships
- Get Pictures
- Get Bulk Aircraft Export
- Get Bulk Aircraft Export Paged
- Get Condensed Snapshot
- Get Condensed Owner Operators
- Get Condensed Owner Operators Paged
- Get Event List
- Get Event List Paged
- Get History List
- Get History List Paged
- Get Flight Data
- Get Relationships
- Company Actions
- Contact Actions
- Market Actions
- Get Model Intelligence
- Get Model Market Trends
- Get Model Operation Costs
- Get Model Performance Specs
- Get Account Info
- Get Product Codes
- Get Airframe Types
- Get Make Type List
- Get Weight Class Types
- Get Airframe JNIQ Sizes
- Get Aircraft Make List
- Get Aircraft Model List
- Get Company Business Types
- Get Aircraft Company Relationship Types
- Get Event Categories
- Get Event Types
- Get Airport List
- Get State List
- Get Country List
- Get Aircraft Lifecycle Status
- Get Aircraft History Transaction Types
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 (
contactIdorid). 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.