question

clover-faq avatar image
clover-faq asked clover-faq edited

How can I access stored customer signatures?

How can I access stored customer signatures?
FAQ
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

clover-faq avatar image
clover-faq answered clover-faq edited
You can get a signature from the VerifySignatureRequest object the Clover device sends after a customer signs using the onVerifySignatureRequest() call. After you retrieve the signatures, you can store them on your own servers.

public override void OnVerifySignatureRequest(VerifySignatureRequest request)
{
  base.OnVerifySignatureRequest(request);
  //Signature object
  Signature2 signatureObject = request.Signature;
}
Note that this method is only valid for signatures taken on the device screen (not paper receipts).
10 |2000

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