DeliveryNote.RejectDeliveryNote Method
It is used only by the receiver of the Delivery Note.
DeliveryNote del = new DeliveryNote("AADEUserID", "OcpApimSubscriptionKey", "Arbitrans User", "Arbitrans Key", false);
DeliveryNote.rejection tra = del.newRejection;
var packs = new List<DeliveryNote.packages>();
tra.qrURL = "https://mydataapidev.aade.gr/TimologioQR/QRInfo?q=1jRnA50t";
tra.Reason = "Wrong receiver";
string result = del.RejectDeliveryNote(tra);
string exp = del.ExportDataForValidation();
This language is not supported or no code example is available.
Dim del As DeliveryNote = New DeliveryNote("AADEUserID", "OcpApimSubscriptionKey", "Arbitrans User", "Arbitrans Key", False)
Dim tra As DeliveryNote.rejection = del.newRejection
Dim packs As New List(Of DeliveryNote.packages)
tra.qrURL = "https://mydataapidev.aade.gr/TimologioQR/QRInfo?q=1jRnA50t"
tra.Reason = "Wrong receiver"
Dim result As String = del.RejectDeliveryNote(tra)
Dim exp As String = del.ExportDataForValidation()
This language is not supported or no code example is available.