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 integrates with the JetNet aviation data service to retrieve detailed aviation-related information. Specifically, for the Contact resource and the Get List Paged operation, it fetches a paginated list of contact records from the JetNet database. This is useful when you want to process or analyze contacts related to aircraft, companies, or other aviation entities in manageable chunks rather than retrieving all at once.
Practical examples include:
- Retrieving batches of contacts for marketing or outreach campaigns.
- Incrementally syncing contact data into your CRM or database.
- Filtering contacts by various criteria such as company name, phone number, or associated aircraft.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool description: - Set Automatically: The description is auto-generated based on the selected resource and operation. - Set Manually: You provide a custom description to explain what this tool does, which can help AI agents produce better results. |
| Description | (Shown only if "Set Manually" is chosen) A text field where you specify a detailed description of the tool's purpose, e.g., "Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence". |
Output
The node outputs JSON data structured as follows:
{
"success": true,
"resource": "contact",
"operation": "getListPaged",
"data": [ /* array of contact objects */ ],
"timestamp": "2024-06-xxTxx:xx:xx.xxxZ"
}
success: Boolean indicating whether the API call was successful.resource: The resource queried, here always"contact".operation: The operation performed, here"getListPaged".data: An array containing the paginated list of contact records returned by JetNet.timestamp: ISO string timestamp of when the response was generated.
If an error occurs, the output JSON will contain:
{
"success": false,
"error": "Error message describing the problem",
"resource": "contact",
"operation": "getListPaged",
"timestamp": "2024-06-xxTxx:xx:xx.xxxZ"
}
The node does not output binary data.
Dependencies
- Requires an active connection to the JetNet API service.
- Needs an API authentication token and security token configured via n8n credentials (an API key credential).
- The node makes HTTP requests to the JetNet customer endpoint (
https://customer.jetnetconnect.com).
Troubleshooting
- Missing Required IDs: For some operations, missing required identifiers (e.g., Contact ID) will cause errors. For "Get List Paged", ensure pagination parameters are correctly provided if used.
- Authentication Errors: If the API tokens are invalid or expired, the node will fail to authenticate. Verify that the API key credential is valid and has necessary permissions.
- Unknown Resource or Operation: Selecting an unsupported resource or operation will throw an error. Confirm that "Contact" resource and "Get List Paged" operation are selected.
- API Rate Limits: Large paged queries may hit API rate limits; consider adjusting page size or adding delays between calls.
- Malformed Input: Input parameters must be properly formatted; otherwise, the request may fail or return empty results.
Links and References
- JetNet Official Website
- JetNet API Documentation (Assumed, check actual docs for details)
- n8n Documentation on Creating Custom Nodes
This summary focuses on the Contact resource with the Get List Paged operation, describing its input properties, output structure, dependencies, and common troubleshooting tips based on static code analysis.