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);
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://apitest.nilvera.com/eledger/Properties', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'GET', CURLOPT_HTTPHEADER => array( 'Authorization: Bearer <API KEY>' ), )); $response = curl_exec($curl); curl_close($curl); echo $response;
const axios = require('axios'); let config = { method: 'get', maxBodyLength: Infinity, url: 'https://apitest.nilvera.com/eledger/Properties', headers: { 'Authorization': 'Bearer <API KEY>' } }; axios.request(config) .then((response) => { console.log(JSON.stringify(response.data)); }) .catch((error) => { console.log(error); });
GET /eledger/Properties HTTP/1.1 Host: Authorization: Bearer JWT Accept: */*
Defter ayarlarını getirir.
{ "Nace": "text", "Creator": "text", "LineCount": 1, "TaxType": "IncludeTax", "IsBranch": true, "BranchName": "text", "BranchNumber": "text", "LedgerPeriod": true, "FiscalYearStart": "2025-04-28T10:51:20.427Z", "FiscalYearEnd": "2025-04-28T10:51:20.427Z", "AccountingPeriod": "AccountingPeriod", "IsLiquidate": true, "LiquidateYearStart": "2025-04-28T10:51:20.427Z", "BalanceControl": true, "PaymentMethodControl": true, "SignMethod": "SmartCard", "CurrencyCode": "text", "SplitBillControl": true, "DocumentNumberControl": true, "AutoNumberControl": true, "DateDifferenceValidControl": true, "OpeningVoucherControl": true, "AutoPaymentMethodControl": true }