For the complete documentation index, see llms.txt. This page is also available as Markdown.

Satış İrsaliyesine Ait Bildirim Kuralını Siler

Satış irsaliyesine ait bildirim kuralını siler.

delete
Authorizations
HTTPRequired

API anahtar� giriniz

Path parameters
IDinteger · int32Required
Responses
200

Satış irsaliyesine ait bildirim kuralını siler.

application/json
booleanOptional
delete
/Notification/Sale/{ID}
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/edespatch/Notification/Sale/0", Method.Delete);
request.AddHeader("Authorization", "APIKEY");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated