Use the getVolumes API to retrieve a list of your volumes.
 
########====CDP Server Configuration Start====########
#set CDP server host name
$HOST="10.230.131.25";
#set CDP server to access API
$PORT="9443";
#set CDP user
$USER="admin";
#set CDP user password
$PASS="admin";
########====CDP Server Configuration End====########
#Retrieve a list of volumes.
try{
	$client = new soapclient("https://$HOST:$PORT/Volume?wsdl",
		array('login'=>"$USER",
		'password'=>"$PASS",
		'cache_wsdl' => WSDL_CACHE_NONE,
		'features' => SOAP_SINGLE_ELEMENT_ARRAYS,
		'trace'=>1
		 )
	);
	$response=$client->getVolumes();
	var_dump($response);
	echo "Successfully executed getVolumes\n";
	exit(0);
}
catch (SoapFault $exception)
{
	echo $exception;
	exit(1);
}
 
 
        
        
            Labels:
        
        
            
                None
            
            
                            
                    
        
        
    