I type in the amount on a Windows PC, and send it to the Clover for payment. All that works, but I would like the customer to have to click a "confirm amount" button before they can run their card (in case they put their card in before the amount is shown on the screen). Is there a way to do that? Something similar to a JavaScript confirm() method?.
Sample of payment code:
SaleRequest request = new SaleRequest(); request.ExternalId = ExternalIDUtil.GenerateRandomString(32); request.Amount = 299; //hard-coded for testing simplicity... data.CloverConnector.Sale(request);