Defter Ayarlarını Getirir

Defter ayarlarını getirir.

get
Authorizations
Responses
200
Defter ayarlarını getirir.
get
GET /eledger/Properties HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "Nace": "text",
  "Creator": "text",
  "LineCount": 1,
  "TaxType": "IncludeTax",
  "IsBranch": true,
  "BranchName": "text",
  "BranchNumber": "text",
  "LedgerPeriod": true,
  "FiscalYearStart": "2025-06-25T13:40:54.234Z",
  "FiscalYearEnd": "2025-06-25T13:40:54.234Z",
  "AccountingPeriod": "AccountingPeriod",
  "IsLiquidate": true,
  "LiquidateYearStart": "2025-06-25T13:40:54.234Z",
  "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);

Last updated