Updates
Avionics Package Toggle Added to Bulk Aircraft Export APIs
Description:
The Bulk Aircraft Export APIs have been enhanced with a new optional request field to allow clients to include the Avionics Package section from JETNET Evolution in their export results.
New Field:
The following optional Boolean request field has been added:
showAvionics
Behavior:
- The new field is optional.
- The field defaults to
false. - If the field is omitted or set to
false, the response remains unchanged. - If the field is set to
true, the Avionics Package data from Evolution will be included in the Bulk Export response.
Example Request:
{
"sernbr": "5007",
"regnbr": "N383T",
"showHistoricalAcRefs": false,
"showAwaitingDocsCompanies": false,
"showAvionics": true
}Result:
When enabled, this toggle allows the export response to include the Avionics Package.
Endpoint Locations:
api/Aircraft/getBulkAircraftExport/{security token}api/Aircraft/getBulkAircraftExportPaged/{security token}/{pgesize}/{page}
New: Company/Contacts Endpoint with Contact Toggle
Description:
New Company/Contacts API endpoints have been added to provide company-level information with the ability to optionally include associated contact records in the response.
These endpoints support flexible filtering across multiple company-related fields and include ZIP code filtering capabilities for targeted lookups.
New Endpoints:
The following endpoints are now available:
api/Company/getCompanyContactList/{security token}api/Company/getCompanyContactListPaged/{security token}/{pagesize}/{page}
These endpoints return:
- Company information
- Optional associated contact information
New Request Parameter:
The following optional Boolean request parameter has been added:
showcontacts
Behavior:
showcontacts=true— Includes associated contact records in the response.showcontacts=falseor omitted — Returns company data only.
Example Request:
{
"name": "",
"country": "United States",
"city": "",
"state": [],
"statename": [],
"website": "",
"postalcode": "13152",
"bustype": [],
"relationship": [],
"complist": [],
"actiondate": "",
"showcontacts": true
}Endpoint Locations:
api/Company/getBulkAircraftExport/{security token}api/Company/getBulkAircraftExportPaged/{security token}/{pgesize}/{page}