"; // ### Capture Payment // You can capture and process a previously created authorization // by invoking the $authorization->capture method // with a valid ApiContext (See bootstrap.php for more on `ApiContext`) try { // Retrieve the authorization $authorization = Authorization::get($authorizationId, $apiContext); $amt = new Amount(); $amt->setCurrency("USD") ->setTotal(1); ### Capture $capture = new Capture(); $capture->setAmount($amt); // Perform a capture $getCapture = $authorization->capture($capture, $apiContext); } catch (Exception $ex) { // NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY ResultPrinter::printError("Capture Payment", "Authorization", null, $capture, $ex); exit(1); } // NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY ResultPrinter::printResult("Capture Payment", "Authorization", $getCapture->getId(), $capture, $getCapture); return $getCapture;