For the complete documentation index, see llms.txt. This page is also available as Markdown.

Retrieves Envelope Information with the ETTN Number of the Invoice

Faturaya ait ETTN numarası ile Zarf bilgilerini getirir.

get
Authorizations
HTTPRequired

API Key Giriniz

Path parameters
UUIDstring · uuidRequired
Responses
200

Faturaya ait ETTN numarası ile Zarf bilgilerini getirir.

application/json
GIBCodestring · nullableOptional
GIBDescriptionstring · nullableOptional
EnvelopeUUIDstring · nullableOptional
get/Sale/{UUID}/EnvelopeInfo
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/einvoice/Sale/17ae561f-2b79-4c7d-b74e-0aa861b1ad33/EnvelopeInfo", Method.Get);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated