VivaWalletPOS.getTransactionID Method

This function can be used to get the Transaction ID of a sale/refund.
Public Function getTransactionID( _ 
ByVal sessionID As String
) As String
This language is not supported or no code example is available.
public string getTransactionID( 
string sessionID 
)
This language is not supported or no code example is available.

Parameters

sessionID
string

The unique session identifier. You specified this Transaction.sessionID (or RefundTransaction.sessionID) when you created a new transaction.

Return Value

string
Example
 
 VivaWalletPOS vw = new VivaWalletPOS("Arbitrans User", "Arbitrans Key", "ClientID", "ClientSecret", false);
 string result = vw.getTransactionID("my custom session ID");
 					
This language is not supported or no code example is available.
 Dim vw As VivaWalletPOS = New VivaWalletPOS("Arbitrans User", "Arbitrans Key", "ClientID", "ClientSecret", False)
 Dim result As String = vw.getTransactionID("my custom session ID")
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition