RequestVatInfo.Request Method
The "Vat Info" is a datatable that contains an analysis of each mark that will be included in the monthly VAT document, known as "Φ2".
The analysis contains every possible field of the document and the amount that is going there for each invoice.
Parameters
- maxPages
- int
Maximum myDATA pages to retrieve. Note: myDATA returns no more than 1000 invoices per page. You can only retrieve ten (10) pages at a time!
- SearchParam
- string[]
Search Parameters, string array.
The values that this field can take are as follows: {dateFrom, dateTo, entityVatNumber}
Every date field is formatted as dd/MM/yyyy.
- nextPageKeys
- string[]
When the search is finished, you can initiate a new search for the next page(s) by adding the next page data. You can retrieve the next page data using the method getNextPageKeys.
- groupedData
- bool
It groups the returned data by date. When true, then the returned MARKs are always zero (0)
- GreekErrors
- bool
Determines if the error will be returned in Greek or not.
// This code will retrieve all the income invoices for the first semester of the year 2024. RequestVatInfo rvi = new RequestVatInfo("AADEUserID", "OcpApimSubscriptionKey", "ExecuteEntityVatNumber", "Arbitrans User", "Arbitrans Key", false, false); //SearchParam = {dateFrom, dateTo, entityVatNumber}; string[] SearchParam = {"01/01/2024", "31/03/2024", ""}; rvi.Request(5, SearchParam, default); //Retrieve 5 pages at once, in a range of dates from 01/01/2024 to 31/03/2024. if (IsNothing(rvi.getErrorMessage)) DataTable dt = rvi.getVatInfo(); // Diplay DataTable code here else MessageBox.Show(rvi.getErrorMessage);
This language is not supported or no code example is available.
' This code will retrieve all the income invoices for the first semester of the year 2024. Dim rvi As RequestVatInfo = New RequestVatInfo("AADEUserID", "OcpApimSubscriptionKey", "ExecuteEntityVatNumber", "Arbitrans User", "Arbitrans Key", False, True) 'SearchParam = {dateFrom, dateTo, entityVatNumber} Dim SearchParam as String() = {"01/01/2024", "31/03/2024", ""} rvi.Request(5, SearchParam, Nothing) 'Retrieve 5 pages at once, in a range of dates from 01/01/2024 to 31/03/2024. If IsNothing(rvi.getErrorMessage) Then Dim dt As DataTable = rvi.getVatInfo() ' Diplay DataTable code here Else MessageBox.Show(rvi.getErrorMessage) End If
This language is not supported or no code example is available.