@@ -746,6 +746,30 @@ class Zm_Account
return $result;
}
+
+ /**
+ * getAllCos
+ * @return array informations
+ */
+ function getAllCos()
+ {
+ $result = null;
+ try
+ $result = $this->auth->execSoapCall(
+ "GetAllCosRequest"
+ );
+ $result = $result['SOAP:ENVELOPE']['SOAP:BODY']['GETALLCOSRESPONSE'];
+ }
+ catch (SoapFault $exception)
+ $result = $exception;
+ return $result;
?>