ProvBratnet.getInvoiceInfo Method

Returns the invoice information, based on its UID.
Public Function getInvoiceInfo( _ 
ByVal uid As String
) As Dictionary(Of String, String)
This language is not supported or no code example is available.
public Dictionary<string, string> getInvoiceInfo( 
string uid 
)
This language is not supported or no code example is available.

Parameters

uid
string

The UID of the invoice you got from sendInvoice, field invoiceUid

Return Value

Dictionary<string, string>
Example
 
 var bra = new ProvBratnet("BratnetUser", "BratnetPassword", "bratnetAPIKey", "arbUser", "arbKey", false);
 Dictionary<string, string> result = bra.getInvoiceInfo("E16CAC5FFF6A00A0F03E4EAF26F202E0D29FE387");
 					
This language is not supported or no code example is available.
 Dim bra As ProvBratnet = New ProvBratnet("BratnetUser", "BratnetPassword", "bratnetAPIKey", "arbUser", "arbKey", False)
 Dim result As Dictionary(Of String, String) = bra.getInvoiceInfo("E16CAC5FFF6A00A0F03E4EAF26F202E0D29FE387")
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition