I got the following error: com.clover.sdk.v1.ForbiddenException: status code: 403 App doesn't have required permission
checked the app permision and has the enough to be able to do payments.
paymentRequest = new PaymentRequest(); paymentRequest.setTender(cash_tender); paymentRequest.setAmount(501L); paymentRequest.setTaxAmount(100L); paymentRequest.setTipAmount(200L); paymentRequest.setOrderId(order.getId()); return orderConnector.pay(order.getId(), paymentRequest, false, "Some note for payment request...");
Regards.