Updates:
Enhancement: Maintenance General Notes Added to Bulk Aircraft Export Endpoints
Description:
The maintenance general notes field has been added to the acmaintenance block when showMaintenance is enabled on the Bulk Aircraft Export APIs
Example Request:
{
"airframetype": "FixedWing",
"lifecycle": "InOperation",
"aircraftchanges": "",
"aclist": [13154],
"showMaintenance":true
}
Result:
Endpoint Locations:
- api/Aircraft/getBulkAircraftExport/{security token}
- api/Aircraft/getBulkAircraftExportPaged/{security token}/{pasgesize}/{page}
Enhancement: Maintenance General Notes Added getMaintenance Endpoint
Description:
The maintenance general notes field has been added to the maintenance block on the getMaintenance endpoint.
Example Request:
https://customer.jetnetconnect.com/api/Aircraft/getMaintenance/125140/{security token}
Result:
Endpoint Locations
- api/Aircraft/getMaintenance/{ac id}/{security token}
Enhancement: Aircraft Seller Purchaser Report – New Filter Fields
Description:
Four new optional filter fields have been added to the Aircraft Seller Purchaser Report to provide more granular control over query results.
New Fields
The following request parameters are now available:
- isnewaircraft
- ispreownedtrans
- isretailtrans
- isinternaltrans
Behavior
- All fields are optional.
- Each field supports the following values:
- Yes
- No
- Ignore (default)
- If a field is omitted or set to Ignore, it has no impact on the response (existing behavior is preserved).
Example Request:
{
"airframetype": "None",
"maketype": "None",
"sernbr": "",
"modelid": 0,
"make": "GULFSTREAM",
"actiondate": "01/01/2026",
"enddate": "02/01/2026",
"isnewaircraft": "Yes",
"ispreownedtrans": "Ignore",
"isretailtrans": "Ignore",
"isinternaltrans": "Ignore"
}
Endpoint Locations:
- api/Aircraft/getAcSellerPurchaserReport/{security token}
- api/Aircraft/getAcSellerPurchaserReportPaged/{security token}/{pgesize}/{page}