Retrieves Envelope Information with the ETTN Number of the Invoice

Faturaya ait ETTN numarası ile Zarf bilgilerini getirir.

get

/einvoice/Sale/{UUID}/EnvelopeInfo

Authorizations
Path parameters
UUIDstring uuidrequired
Responses
curl -L \
  --url '/einvoice/Sale/{UUID}/EnvelopeInfo' \
  --header 'Authorization: Bearer JWT'
{
  "GIBCode": "text",
  "GIBDescription": "text",
  "EnvelopeUUID": "text"
}
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);