API を見ると、コードは次のようになると思います。これは完全にテストされていないことに注意してください。
クライアント オブジェクトから始める
//new Client object
$client = new FreshBooks_Client();
リスト方式を使用して特定のメールアドレスを持つユーザーを取得する
//listing function definition void listing ( &$rows, &$resultInfo, [ $page = 1], [ $perPage = 25], [ $filters = array()])
//get projects, 25 per page, page 1, where project belong to client email x@x.x
$client->listing($rows,$resultInfo,1,25,array('email'=>'x@x.x'));
//dump result data
print_r($rows);
print_r($resultInfo);
リスト方式を使用して特定のユーザー名を持つユーザーを取得する
//listing function definition void listing ( &$rows, &$resultInfo, [ $page = 1], [ $perPage = 25], [ $filters = array()])
//get projects, 25 per page, page 1, where project belong to client username test
$client->listing($rows,$resultInfo,1,25,array('username'=>'test'));
//dump result data
print_r($rows);
print_r($resultInfo);
始めるのに役立つことを願っています。