Amadis

How to retrieve Recipient Transaction Identification?

Following one of the latest client requests, we were asked to add this feature in ArkosPay. A code snippet can be found below.

public String getRecipientTransactionIdentification(byte[] context){ TlvTree acqProprietaryData = TlvTree.FromRaw(context).GetChild(Params.ACQUIRER_PROPRIETARY_DATA); if(acqProprietaryData == null){ return null; } else{ String recipientTransactionIdentification = acqProprietaryData.GetElementAscii(AcquirerProprietaryData.RECIPIENT_TRANSACTION_IDENTIFICATION); return recipientTransactionIdentification; } }

Â