Create cancellation
It is possible to cancel a specific purchase from the payment ID using the SDK below. For details on request parameters, check the Cancellation API.
MercadoPago.SDK.configure("YOUR_ACCESS_TOKEN");
Payment payment = Payment.findById("payment_id");
payment.setStatus(Payment.Status.cancelled);
payment.update();