Updates:
Enhancement: Optional Data Group Toggles Added to Bulk Aircraft Export Endpoints
Description:
The Bulk Aircraft Export APIs have been enhanced with new optional request fields to allow clients to selectively include additional aircraft data groups in their export results.
New fields:
The following optional Boolean request fields have been added:
- showMaintenance
- showAdditionalEquip
- showExterior
- showInterior
Behavior:
- All new fields are optional.
- All new fields default to false.
- If a field is omitted or set to false, the response remains unchanged.
- If a field is set to true, the corresponding data group will be included in the Bulk Export response.
Example Request:
{
"sernbr": "5007",
"regnbr": "N383T",
"showHistoricalAcRefs": false,
"showAwaitingDocsCompanies": false,
"showMaintenance": true,
"showAdditionalEquip": true,
"showExterior": true,
"showInterior": true
}
Result:
When enabled, these toggles allow the export response to include additional aircraft sections such as Maintenance, Additional Equipment, Exterior, and Interior.
Endpoint Locations:
- api/Aircraft/getBulkAircraftExport/{security token}
- api/Aircraft/getBulkAircraftExportPaged/{security token}/{pasgesize}/{page}
Enhancement: Lifecycle Field Added to GetAircraftList Endpoint
We have update the GetAircraftList() endpoint to include the Lifecycle.
Example Response:
Endpoint Location:
- api/Aircraft/getAircraftList/{security token}
Enhancement: Transaction Date Filtering Added to getAcSellerPurchaserReport
Description:
The getAcSellerPurchaserReport endpoint has been enhanced to support transaction date–based filtering for fractional activity.
Previously, filtering by Action Date returned all changes made to a record within a date range. This included intermediate updates that did not represent actual fractional transfers. The new transaction date parameters allow filtering specifically on transaction-level activity, improving accuracy for fractional sales reporting.
New fields:
The following optional request fields have been added:
• transactionDateSTART
• transactionDateEND
Behavior:
• When omitted, endpoint behavior remains unchanged.
• When provided, results are filtered based on the specified transaction date range.
Example Request:
{
"airframetype": "None",
"maketype": "BusinessJet",
"transactionDateSTART": "11/20/2025",
"transactionDateEND": "11/30/2025",
"ownertype": ["FractionalOwnership"]
}
Endpoint Location:
- api/Aircraft/getAcSellerPurchaserReport/{security token}
Note:
The new transaction date parameters are also available on the getAcCompanyFractionalReport endpoint, however, they are primarily intended for use with getAcSellerPurchaserReport.