diff --git a/www/api/class/centreon_clapi.class.php b/www/api/class/centreon_clapi.class.php
index 33cfcd719e717c02918d18b6674953c72d01340a..32412691ef921a9bcbfe701b6e01a67424eb15b0 100644
--- a/www/api/class/centreon_clapi.class.php
+++ b/www/api/class/centreon_clapi.class.php
@@ -101,6 +101,9 @@ class CentreonClapi extends CentreonWebService
             if (isset($this->arguments['select'])) {
                 $options['select'] = $this->arguments['select'];
             }
+            if (isset($this->arguments['filter'])) {
+                $options['filter-type'] = $this->arguments['filter'];
+            }
         }elseif (strtoupper($action) === 'IMPORT'){
 
         } else {
diff --git a/www/api/class/webService.class.php b/www/api/class/webService.class.php
index f7746ff958c84cfdebb58b094899990d063ca534..eb01a83a0007c5d8c8fd9c50df4b48a014e108fc 100644
--- a/www/api/class/webService.class.php
+++ b/www/api/class/webService.class.php
@@ -81,7 +81,6 @@ class CentreonWebService
                 $httpParams = $_GET;
                 unset($httpParams['action']);
                 unset($httpParams['object']);
-                unset($httpParams['select']);
                 $this->arguments = $httpParams;
                 break;
             case 'POST':
diff --git a/www/class/centreon-clapi/centreonAPI.class.php b/www/class/centreon-clapi/centreonAPI.class.php
index 77c9dd58a9ebc0188f1ee82e8f9018f26168cc8a..dd32ada27af1b3c5882aa0a69cb9ccc9bf552775 100644
--- a/www/class/centreon-clapi/centreonAPI.class.php
+++ b/www/class/centreon-clapi/centreonAPI.class.php
@@ -83,7 +83,7 @@ class CentreonAPI
     private $objectTable;
     private $aExport = array();
 
-    public function __construct($user, $password, $action, $centreon_path, $options)
+    private function __construct($user, $password, $action, $centreon_path, $options)
     {
         global $version;
 
@@ -799,7 +799,6 @@ class CentreonAPI
 
         $this->initAllObjects();
 
-
         if (isset($this->options['select'])) {
             CentreonExported::getInstance()->set_filter(1);
             CentreonExported::getInstance()->set_options($this->options);