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

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

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

get
Authorizations
HTTPRequired

API anahtar� giriniz

Path parameters
IDinteger · int32Required
Responses
200

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

application/json
IDinteger · int32Optional
RuleNamestring · nullableOptional
IsActivebooleanOptional
get/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.Get);
request.AddHeader("Authorization", "APIKEY");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated