ProvIlyda.completePOSTransaction Method
The result of this method contains the provider's data
Public Function completePOSTransaction( _
ByVal posDeferredTransactionComplete As posDeferredTransactionComplete _
) As Dictionary(Of String, String)
This language is not supported or no code example is available.
public Dictionary<string, string> completePOSTransaction(
posDeferredTransactionComplete posDeferredTransactionComplete
)
This language is not supported or no code example is available.
Parameters
- posDeferredTransactionComplete
- posDeferredTransactionComplete
Return Value
Dictionary<string, string>
Important: You must keep this method's returned "paymentMethodMark" in your database.
var il = new ProvIlyda("ilydaUser", "ilydaPassword", "arbUser", "arbKey", false);
// "res" is the result of the getPOSDeferredSignature method
ProvIlyda.posDeferredTransactionComplete pos;
pos1.amount = 100;
pos1.terminalId = "1111111111";
pos1.signature = "MEYCIQDzpzA34VRVW9Mba8ErFsuqQJD"; // res("invoiceSignatures[0].signature")
pos1.signingAuthor = "008"; // res("invoiceSignatures[0].signingAuthor")
pos1.transactionId = "1f234567-b8ce-9012-b3b4-5caddffda6e7";
Dictionary<string, string> fResult = il.completePOSTransaction(pos1);
This language is not supported or no code example is available.
Dim il As ProvIlyda = New ProvIlyda("ilydaUser", "ilydaPassword", "arbUser", "arbKey", False)
'"res" is the result of the getPOSDeferredSignature method
Dim pos As ProvIlyda.posDeferredTransactionComplete
pos1.amount = 100
pos1.terminalId = "1111111111"
pos1.signature = "MEYCIQDzpzA34VRVW9Mba8ErFsuqQJD" 'res("invoiceSignatures[0].signature")
pos1.signingAuthor = "008" 'res("invoiceSignatures[0].signingAuthor")
pos1.transactionId = "1f234567-b8ce-9012-b3b4-5caddffda6e7"
Dim fResult As Dictionary(Of String, String) = il.completePOSTransaction(pos1)
This language is not supported or no code example is available.