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>| Field | Value / Description |
|---|---|
| userRequestID | 5ed457a1-a40c-4a54-a4c7 |
| version | Test Verion 01 |
| response.mark | 400000000000001 This is the MARK that verifies the Delivery Note is canceled. |
| JSON_ARBDATA | VjJ4b2FtUXhUW!RpUlZKU1Z |
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.