Function onlinePaymentDetails
Arguments
$parameters = array(
[ 'uuid' ] = '' ; // online payment uuid
)
TODO: [ 'uuidList' ]
Returns
Status and details of onlinePayment.
array (
[ 'status' ] = 'OK',
[ 'details' ] = array ( ... )
)
or
array (
[ 'status' ] = 'FAIL',
[ 'errors' ] = array( ... )
)
Example
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 ( ... )
)