Gets the last 10 invoices

Faturaların son 10 kaydını getirir.

GET/earchive/Statistics/Last
Response

Faturaların son 10 kaydını getirir.

Body
UUIDnullable string
IssueDatestring (date-time)
InvoiceNumbernullable string
PayableAmountnumber (double)
ReceiverTaxNumbernullable string
ReceiverNamenullable string
CurrencyCodenullable string
Request
const response = await fetch('/earchive/Statistics/Last', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "UUID": "text",
  "IssueDate": "2024-05-19T19:28:42.621Z",
  "InvoiceNumber": "text",
  "PayableAmount": 0,
  "ReceiverTaxNumber": "text",
  "ReceiverName": "text",
  "CurrencyCode": "text"
}
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/earchive/Statistics/Last", Method.Get);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);