Actions44
- Contact Actions
- 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 Paged
- Get Condensed Owner Operators Paged
- Get Event List Paged
- Get History List Paged
- Company Actions
- Market Actions
Overview
This node integrates with the JetNet API, a service providing detailed aviation industry data. Specifically, for the Company resource and the Get Phone Numbers operation, it retrieves all phone numbers associated with a given company by its unique ID.
Use cases include:
- Fetching contact phone numbers for companies in aviation databases.
- Integrating company phone data into CRM or communication workflows.
- Automating retrieval of company contact details for reporting or outreach.
Example: Given a company ID, the node calls the JetNet API endpoint to return all phone numbers registered for that company.
Properties
| Name | Meaning |
|---|---|
| Company ID | The unique identifier of the company whose phone numbers you want to retrieve. |
Output
The output is a JSON object (or array of objects) containing the phone number data returned by the JetNet API for the specified company. The exact structure depends on the API response but typically includes fields such as phone number types, numbers, extensions, and possibly contact names.
No binary data is output by this operation.
Dependencies
- Requires an active connection to the JetNet API.
- Requires an API authentication token credential configured in n8n to authorize requests.
- The base URL used is
https://customer.jetnetconnect.com. - The node sends HTTP GET requests to endpoints like
/api/Company/getPhonenumbers/{companyId}/{apiToken}.
Troubleshooting
Common issues:
- Invalid or missing Company ID will cause the API call to fail.
- Expired or incorrect API authentication token will result in authorization errors.
- Network connectivity problems can prevent reaching the JetNet API.
Error messages:
- Authorization errors indicate invalid credentials; verify and update your API token.
- "Not Found" or similar errors may mean the company ID does not exist or has no phone numbers.
- Timeout or network errors suggest connectivity issues; check your internet connection and firewall settings.
To handle errors gracefully, enable the node’s "Continue On Fail" option to process subsequent items even if one fails.
Links and References
- JetNet Official Website
- JetNet API documentation (not publicly linked here; refer to your JetNet account resources)
- n8n Documentation on HTTP Request Node (for understanding underlying request mechanics)