Faturaya Ait ETTN Numarası İle Zarf Bilgisini Getirir

Faturaya ait ETTN numarası ile Zarf bilgilerini getirir.

get
Authorizations
Path parameters
UUIDstring · uuidRequired
Responses
200
Faturaya ait ETTN numarası ile Zarf bilgilerini getirir.
application/json
get
GET /einvoice/Sale/{UUID}/EnvelopeInfo HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "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);

Last updated