Son 10 Defter Kaydını Getirir

Son 10 defter kaydını getirir.

GET/estorage/Ledgers/Statistics/Last
Response

Son 10 defter kaydını getirir.

Body
ELedgerTypenullable string
ELedgerFilenullable string
CreatedDatestring (date-time)
Yearnullable string
Periodnullable string
Sizenumber (double)
Request
const response = await fetch('/estorage/Ledgers/Statistics/Last', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "ELedgerType": "text",
  "ELedgerFile": "text",
  "CreatedDate": "2024-09-08T00:24:01.541Z",
  "Year": "text",
  "Period": "text",
  "Size": 0
}
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/estorage/Ledgers/Statistics/Last", Method.Get);
request.AddHeader("Authorization", "Bearer APIKEY");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated