ProvBratnet.getInvoiceInfo Method
Public Function getInvoiceInfo( _
ByVal uid As String _
) As Dictionary(Of String, String)
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>
A dictionary(Of String, String) containing provider's answer.
The Dictionary contains the following values:
The Dictionary contains the following values:
| Field | Value / Description |
|---|---|
| userRequestID | 53b178f8-fb34-47c8-baee-75dc147a7bc9 |
| version | Test Verion 01 |
| response.responses[0].id | 0 |
| response.responses[0].index | 1 |
| response.responses[0].invoiceUid | E16CAC5FFF6A00A0F03E4EAF26F202E0D29FE387 |
| response.responses[0].invoiceMark | 400000000000001 |
| response.responses[0].classificationMark | 0 |
| response.responses[0].authenticationCode | 9D06320F8DC87715D73E098E32D8B464F134C106 |
| response.responses[0].invoiceUrl | https://einvoicing-dev.etimologiera.gr/invoice/preview/53b178f8-fb34-47c8 |
| response.responses[0].bSignature | |
| response.responses[0].hSignature | |
| response.responses[0].signatureMessage | |
| response.responses[0].cancellationMark | 0 |
| response.responses[0].createdAt | 01/01/0001 00:00:00 |
| response.responses[0].updatedAt | 01/01/0001 00:00:00 |
| response.createdAt | 01/01/2026 09:00:00 |
| response.updatedAt | 01/01/2026 09:00:00 |
| JSON_ARBDATA | VjJ4b2FtUXhUW!RpUlZKU1ZqSjRiMVp1Y0ZabFZte_hVMjVPYUdKSVFsVlZNVkpoVTJ4S2RWU |
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.