DigitalCustomers.RequestCustomers Method
Parameters
- initialCustomerID
- string
The CustomerID you want to start from. Example 100000000000001
Note: If you want to retrieve ALL customers, start with initialCustomerID zero (0).
- maxPages
- int
Maximum Customer pages to retrieve. Note: AADE returns no more than 1000 invoices per page. You can only retrieve five (5) pages at a time!
- SearchParam
- string[]
Search Parameters, string array.
The values that this field can take are as follows: {maxCustomerID}
Currently, you can set only one (1) parameter. In the future, AADE may add more parameters.
- GreekErrors
- bool
Determines if the error will be returned in Greek or not.
var dgc = new DigitalCustomers("AADEUserID", "OcpApimSubscriptionKey", "EntityVatNumber", "Arbitrans User", "Arbitrans Key", false); string[] searchParam = new[] { "100000000000100" }; dgc.RequestCustomers(100000000000001L, 5, searchParam, true);
This language is not supported or no code example is available.
Dim dgc as DigitalCustomers = new DigitalCustomers("AADEUserID", "OcpApimSubscriptionKey", "EntityVatNumber", "Arbitrans User", "Arbitrans Key", False) Dim searchParam As String() = {"100000000000100"} dgc.RequestCustomers(100000000000001, 5, searchParam, True)
This language is not supported or no code example is available.