question

SAMSA Web Team avatar image
SAMSA Web Team asked David Marginian Deactivated edited

Remote Pay Cloud Print Cash Receipt

Is there a way to print a receipt for a cash transaction with the Remote Pay Cloud SDK? Something like:


var amount = 10.99
var order = new clover.order.Order();
order.setId(1234);
order.setTotal(amount);
var receipt = new clover.remotepay.DisplayReceiptOptionsRequest();
receipt.setOrderId(1234);
cloverConnector.displayReceiptOptions(receipt);


Remote Pay Cloud
10 |2000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
David Marginian avatar image
David Marginian Deactivated answered David Marginian Deactivated edited

I think you have the wrong idea of what displayeReceiptOptions does. It simply displays the receipt options screen. We don't track cash payments, if you want to print a receipt for cash then you will need to use one of the various print APIs on CloverConnector and generate your own receipt. See https://docs.clover.com/clover-platform/docs/creating-custom-receipts for some details.

10 |2000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Welcome to the
Clover Developer Community