Returns the Last 10 Records of Outgoing Invoices

Giden faturaların son 10 kaydını getirir.

GET/einvoice/Statistics/Sale/Last
Response

Giden 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('/einvoice/Statistics/Sale/Last', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "UUID": "text",
  "IssueDate": "2024-05-19T17:31:55.061Z",
  "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("/einvoice/Statistics/Sale/Last", Method.Get);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);