Gets Ledger Settings

Defter ayarlarını getirir.

get
Authorizations
Responses
curl -L \
  --url '/eledger/Properties' \
  --header 'Authorization: Bearer JWT'
{
  "Nace": "text",
  "Creator": "text",
  "LineCount": 1,
  "TaxType": "IncludeTax",
  "IsBranch": true,
  "BranchName": "text",
  "BranchNumber": "text",
  "LedgerPeriod": true,
  "FiscalYearStart": "2025-03-21T18:15:31.746Z",
  "FiscalYearEnd": "2025-03-21T18:15:31.746Z",
  "AccountingPeriod": "AccountingPeriod",
  "IsLiquidate": true,
  "LiquidateYearStart": "2025-03-21T18:15:31.746Z",
  "BalanceControl": true,
  "PaymentMethodControl": true,
  "SignMethod": "SmartCard",
  "CurrencyCode": "text",
  "SplitBillControl": true,
  "DocumentNumberControl": true,
  "AutoNumberControl": true,
  "DateDifferenceValidControl": true,
  "OpeningVoucherControl": true,
  "AutoPaymentMethodControl": true
}
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/eledger/Properties", Method.Get);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);