VivaWalletPOS.getTransactionDetails Method

Use this function to get the full details of a specified transaction. It returns a dictionary containing all the fields of the transaction. 
This function is not available in the Trial Version.
Public Function getTransactionDetails( _ 
ByVal sessionID As String
) As Dictionary(Of String, String)
This language is not supported or no code example is available.
public Dictionary<string, string> getTransactionDetails( 
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

Dictionary<string, string>
Example
 
 VivaWalletPOS vw = new VivaWalletPOS("Arbitrans User", "Arbitrans Key", "ClientID", "ClientSecret", false);
 Dictionary<string, object> result = vw.getTransactionDetails("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 Dictionary(Of String, Object) = vw.getTransactionDetails("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