Delete Sales Invoice Notification Setting

Satış faturasına ait bildirim kuralını siler.

DELETE/einvoice/Notification/Sale/{ID}
Path parameters
ID*integer (int32)
Response

Satış faturasına ait bildirim kuralını siler.

Body
boolean
Request
const response = await fetch('/einvoice/Notification/Sale/{ID}', {
    method: 'DELETE',
    headers: {},
});
const data = await response.json();
Response
false
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/einvoice/Notification/Sale/1", Method.Delete);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);