Updates: flightLastActionDate updated in getFlightData() endpoint
Description:
We have updated the getFlightData() endpoint to correct an issue with the flightLastActionDate field, it was returning NULL. This issue has been corrected, and the field now returns the appropriate value when the flight action date exists.
Endpoint Locations:
· api/Aircraft/ getFlightData/{security token}
New Endpoints:
We have introduced four new endpoints:
· getAcCompanyFractionalReport()
· getAcCompanyFractionalReportPaged()
· getAcSellerPurchaserReport()
· getAcSellerPurchaserReportPaged()
Aircraft Company Fractional Report
These endpoints are based on the Aircraft Company Fraction Information Report from JETNET Evolution, allowing you to retrieve fractional ownership data for aircraft companies.
Usage Recommendations:
· Use actiondate and enddate to query data in one-month intervals for optimal performance.
· Apply the relationship filter to target specific company relationships. For reference, see: api/Utility/getAircraftCompanyRelationships
· To filter for Fractional Owners, use: ["Fractional Owner"]
Example Request:
{
"airframetype": "FixedWing",
"maketype": "BusinessJet",
"actiondate": "11/01/2025",
"enddate": "11/30/2025",
"relationship": ["Fractional Owner"]
}
Endpoint Locations:
· api/Aircraft/getAcCompanyFractionalReport/{security token}
· api/Aircraft/getAcCompanyFractionalReportPaged/{security token}/{page size}/{page}
Aircraft Seller/Purchaser Report
These endpoints are based on the Aircraft Seller/Purchaser Report with Fractional Information from JETNET Evolution, enabling you to retrieve seller and purchaser data with ownership details.
Usage Recommendations:
· Use actiondate and enddate to query data in one-month intervals.
· Apply the ownertype filter to target specific ownership types. Available options: [None, WhollyOwned, SharedOwnership, FractionalOwnership]
· For Fractional Ownership, use: ["FractionalOwnership"]
Example Request:
{
"airframetype": "None",
"maketype": "BusinessJet",
"actiondate": "11/01/2025",
"enddate": "11/30/2025",
"ownertype": ["FractionalOwnership"]
}
Endpoint Locations:
· api/Aircraft/getAcSellerPurchaserReport/{security token}
· api/Aircraft/getAcSellerPurchaserReportPaged/{security token}/{page size}/{page}