$parameters = array( [ 'uuid' ] = '' ; // online payment uuid ) TODO: [ 'uuidList' ]
array ( [ 'status' ] = 'OK', [ 'details' ] = array ( ... ) ) or array ( [ 'status' ] = 'FAIL', [ 'errors' ] = array( ... ) )
require_once ( 'classUddsOx.php' ) ; $udds = new classUddsOx ; $udds->customerCode = [your_customerCode] ; $udds->login = [your_login] ; $udds->password = [your_password] ; $udds->serverUrl = 'http://api.dlaoperatora.pl/udds/' ; $myParams = array() ; $myParams [ 'uuid' ] = 'xxxx-xxxx-xxxx-xxxx-xxxx-xxxx' ; $ret = $udds->onlinePaymentDetails( $myParams ) ;
Returns $ret =
array ( [ 'status' ] = 'OK', [ 'details' ] = array ( ... ) )