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

Alış Faturasına Ait Bildirim Ayarını Siler.

Alış faturasına ait bildirimi kuralını siler.

delete
Authorizations
HTTPRequired

API Key Giriniz

Path parameters
IDinteger · int32Required
Responses
delete
/Notification/Purchase/{ID}
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/einvoice/Notification/Purchase/1", Method.Delete);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated