Dear all,
I’m new in this, we have a plan to implement and use FlightXML 3 since it’s the new one, and seems like it has the best schema for our business.
I tried to get all departures from WIII, I can get the numbers of departures using CountAirportOperations, and it gets 33 departures. Then I tried to get all the 33 flights using AirportBoards
$params = array(
“airport_code” => $airport_code,
“include_ex_data” => “”,
“filter” => “airline”,
“type” => “departures”,
“howMany” => $num,
“offset” => 0
);
$result_board = $client->AirportBoards($params);
with $num=33
But it will always return 15, so I guess it can only return max result of 15, with next_offset=15, so I tried this
$params = array(
“airport_code” => $airport_code,
“include_ex_data” => “”,
“filter” => “airline”,
“type” => “departures”,
“howMany” => 15,
“offset” => 15
);
$result_board = $client->AirportBoards($params);
But it always return the same 15 result, as the one with offset=0
So, did I do something wrong? Please advice
Thank you