faultcode CLIENT

Hi, I’m trying to test my account and run a SearchBirdseyeInFlight query:


$options = array(
			'trace' => true,
			'exceptions' => 0,
			'login' => 'labs',
			'password' => '7c3f...........69',
		);
$client = new SoapClient('http://flightxml.flightaware.com/soap/FlightXML2/wsdl', $options);

$query = "{match ident UN2371}";
$params = array("query" => $query,"howMany" => 15,"offset" => 0);
$result = $client->SearchBirdseyeInFlight($params);

But I get the following response:


{"faultstring":"no results","faultcode":"CLIENT","detail":{"errorInfo":{"errorCode":"NONE"}}}

What am I doing wrong?

What flight are you trying to track? Do you mean TSO2371 instead of UN2371? Automatic IATA to ICAO conversion is not performed on SearchBirdseyeInFlight queries.