capture method // with a valid ApiContext (See bootstrap.php for more on `ApiContext`) try { $authId = $authorization->getId(); $amt = new Amount(); $amt->setCurrency("USD") ->setTotal("1.00"); ### Capture $capture = new Capture(); $capture->setAmount($amt); // Perform a capture $getCapture = $authorization->capture($capture, $apiContext); } catch (Exception $ex) { ResultPrinter::printError("Capture Payment", "Authorization", null, $capture, $ex); exit(1); } ResultPrinter::printResult("Capture Payment", "Authorization", $getCapture->getId(), $capture, $getCapture); return $getCapture;