Manage Apple Pay payment
Manage Apple Pay payments
Manage paymentsAfter the successful charge
or authorize
transaction, you can perform additional operations on the payment
resource. Some of the important ones are described in the following section.
For a full reference of managing payments, go to relevant server-side integration documentation page: Manage API resources (direct API calls), Manage API resources (PHP SDK), or Manage API resources (Java SDK).
Cancel after authorize (Reversal)
Release the reserved money for the customer’s payment method. It is also possible to perform multiple cancellations for an authorization with partial amounts.
POST https://api.unzer.com/v1/payments/s-pay-1/authorize/cancels
{
"amount" : "49.90"
}
$unzer = new Unzer('s-priv-xxxxxxxxxx');
$payment = $unzer->fetchPayment('s-pay-1');
$unzer->cancelAuthorizationByPayment($payment, 49.90);
Unzer unzer = new Unzer("s-priv-xxxxxxxxxx");
Authorization authorization = unzer.fetchAuthorization('s-pay-1');
Cancel cancel = authorization.cancel();
Cancel after charge (refund)
Cancel after payment (refund)You can refund up to the amount of the received payment. To do this, you have to make a cancel
transaction for an existing charge
transaction.
POST https://api.unzer.com/v1/payments/s-pay-1/charges/s-chg-1/cancels
{
"amount" : "49.9000",
"paymentReference": "Test cancel transaction"
}
$unzer = new Unzer('s-priv-xxxxxxxxxx');
$charge = $unzer->fetchChargeById('s-pay-1', 's-chg-1');
$cancel = $charge->cancel();
Unzer unzer = new Unzer("s-priv-xxxxxxxxxx");
Cancel cancel = unzer.cancelCharge("s-pay-1", "s-chg-1");