1 * [CatalogsList] => http://amda.irap.omp.eu/data/WSRESULT/catalogs_impex_20180905.xml * * @apiErrorExample Error-Response: * {"error": "Workspace Error : Cannot load Catalogs list for userID"} */ require_once '../config.php'; $amda_ws = new WebServer(); $result = $amda_ws->getCatalogsList($_GET); if ($result['success']) { echo $result['CatalogsList']; } else { echo $result['message']; } ?>