ProvBratnet.CancelDeliveryNote Method
Public Function CancelDeliveryNote( _
ByVal vatNumber As String, _
ByVal Mark As String _
) As Dictionary(Of String, String)
This language is not supported or no code example is available.
Parameters
- vatNumber
- string
The Vat number of the Issuer ex 123456789
- Mark
- string
The Mark of the Delivery Note you want to Cancel.
Return Value
Dictionary<string, string>
var bra = new ProvBratnet("bratnetUser", "bratnetPassword", "bratnetAPIKey", "arbUser", "arbKey", false);
Dictionary<string, string> result = bra.CancelDeliveryNote("123456789", "400000000000001");
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.CancelDeliveryNote("123456789", "400000000000001")
This language is not supported or no code example is available.