Hello,
I want to retrieve a payment on android using the payment connector (com.clover.sdk.v3.connector) methods , I've tried
RetrievePaymentRequest r = new RetrievePaymentRequest(); r.setExternalPaymentId("ExternalPaymentId"); AsyncTask.execute(() ->paymentConnector.retrievePayment(r));
the callback gets called but always returns not payment found
{ "success": false, "result": "FAIL", "payment": null, "reason": "Payment not found", "message": null }
I've also tried
AsyncTask.execute(paymentConnector::retrievePendingPayments)
And the same
{ "success": true, "result": "SUCCESS", "reason": null, "message": null, "pendingPaymentEntries": { "elements": [] } }
Am I missing anything?, I really need to retrieve a payment.
Note: I'm connecting android pay display usb app over a mini
Thanks!!