I've created a payment with custom 'attributes'. When I use the rest api to retrieve the payment it doesn't have 'attributes'. In the request parameter I use expand=paymentAttributes
using Clover Android SDK
Sorry
Let me explain more detailed
In order to create payment we use 'remote-pay-android'
and request looks like this:
val saleRequest = SaleRequest(amount, getNextId())
saleRequest.signatureEntryLocation = DataEntryLocation.NONE
saleRequest.cardNotPresent = true
saleRequest.externalReferenceId = saleRequest.externalId
saleRequest.extras = extras
....
cloverConnector.sale(saleRequest)
In oreder to get payment on the server side we use this API:
https://docs.clover.com/reference/paygetpayment
and I expect my 'extras' params in the payment
but unfortunatly I can't get my 'extras' in the payment
1 Person is following this question.