Warning: You are browsing the documentation from version 4 to 10 of Pimcore.
Please visit https://pimcore.com/docs/platform/ for the latest versions of Pimcore.
Version:
Datatrans
It's possible to make a authorisation and clearing in one step. Default behavior is authorisation only. For automatic clearing set the option "reqtype" to "CAA"
<?php
$url = 'http://'. $_SERVER["HTTP_HOST"] . "/en/checkout/payment-status?mode=";
$config = [
// checkout config
'language' => $language
, 'refno' => $paymentInformation->getInternalPaymentId()
, 'useAlias' => true
, 'reqtype' => 'CAA' // Authorisation and settlement
// system
, 'successUrl' => $url . 'success'
, 'errorUrl' => $url . 'error'
, 'cancelUrl' => $url . 'cancel'
];