Downloads the Ledgers of Companies and Branches for the Relevant Year and Month

Firma ve tüm alt şubelerinin ilgili yıl ve aydaki defterlerini indirir.

GET/eledger/Documents/AllBranch/Download
Query parameters
Response

Firma ve tüm alt şubelerinizin ilgili yıl ve aydaki defterleri indirildi.

Body
string
Request
const response = await fetch('/eledger/Documents/AllBranch/Download', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
"text"
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/eledger/Documents/AllBranch/Download", Method.Get);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);