Returns the Last 10 Records of Incoming Invoices

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

get
Authorizations
HTTPRequired

API Key Giriniz

Responses
chevron-right
200

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

application/json
UUIDstring · nullableOptional
IssueDatestring · date-timeOptional
InvoiceNumberstring · nullableOptional
PayableAmountnumber · doubleRead-onlyOptional
SenderTaxNumberstring · nullableOptional
SenderNamestring · nullableOptional
CurrencyCodestring · nullableOptional
AnswerCodestring · enumOptionalPossible values:
get
/Statistics/Purchase/Last
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/einvoice/Statistics/Purchase/Last", Method.Get);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated