We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I want to pass timeout parameter while creating payment so that customers can only pay within 10 minutes of time.
I've tried few ways but none working.
$gateway = Omnipay::create('PaymentExpress_PxPay'); $gateway->setUsername('username'); $gateway->setPassword('password'); $response = $gateway->purchase([ 'amount' => 100, 'currency' => 'USD', 'to' => Carbon\Carbon::now()->timezone('UTC')->addMinutes(1)->format('ymdHi'), 'returnUrl' => 'returnURL.php' ])->send();
$gateway = Omnipay::create('PaymentExpress_PxPay'); $gateway->setUsername('username'); $gateway->setPassword('password'); $response = $gateway->purchase([ 'amount' => 100, 'currency' => 'USD', 'TO' => Carbon\Carbon::now()->timezone('UTC')->addMinutes(1)->format('ymdHi'), 'returnUrl' => 'returnURL.php' ])->send();
$gateway = Omnipay::create('PaymentExpress_PxPay'); $gateway->setUsername('username'); $gateway->setPassword('password'); $response = $gateway->purchase([ 'amount' => 100, 'currency' => 'USD', 'Opt' => "To=".Carbon\Carbon::now()->timezone('UTC')->addMinutes(1)->format('ymdHi'), 'returnUrl' => 'returnURL.php' ])->send();
Payment express is providing such feature. Added comment/document provided by payment express.
Please help.
The text was updated successfully, but these errors were encountered:
I think this is will be sorted by #55 when it gets merged in.
Sorry, something went wrong.
No branches or pull requests
Hello,
I want to pass timeout parameter while creating payment so that customers can only pay within 10 minutes of time.
I've tried few ways but none working.
Payment express is providing such feature. Added comment/document provided by payment express.
Please help.
The text was updated successfully, but these errors were encountered: