RequestReceiverInfoProvider.Request Method

Request - Get all Emails that the entity accepts invoices issued by a provider.
Public Sub Request( _ 
Optional ByVal GreekErrors As Boolean = False _ 
)
This language is not supported or no code example is available.
public void Request( 
bool GreekErrors = False 
)
This language is not supported or no code example is available.

Parameters

GreekErrors
bool

Determines if the error will be returned in Greek or not.

Example
 
  RequestInvoicesProvider rqd = new RequestInvoicesProvider("AADEUserID", "OcpApimSubscriptionKey", "ExecuteEntityVatNumber", "Arbitrans User", "Arbitrans Key", false);
 
  rqd.Request(); //Request Issuer Emails.
 
  if (IsNothing(rqd.getErrorMessage))
     DataTable dt = rqd.getEmails();
  else
     MessageBox.Show(rqd.getErrorMessage);
  					
This language is not supported or no code example is available.
  Dim rqd As RequestInvoicesProvider = New RequestInvoicesProvider("AADEUserID", "OcpApimSubscriptionKey", "ExecuteEntityVatNumber", "Arbitrans User", "Arbitrans Key", False)
 
  rqd.Request(0) 'Request Issuer Emails.
 
  If IsNothing(rqd.getErrorMessage) Then
      Dim dt As DataTable = rqd.getEmails()
  Else
      MessageBox.Show(rqd.getErrorMessage)
 End If
  					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition