Şablonu Getirir

Şablonun detayını getirir.

get
Authorizations
Path parameters
idinteger · int32Required
Responses
200
Şablonun detayını getirir.
application/json
get
GET /einvoice/Templates/{id} HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "ID": 1,
  "UUID": "text",
  "Name": "text",
  "IsActive": true,
  "IsDefault": true,
  "CreationDate": "2025-06-25T13:46:05.225Z",
  "TemplateID": 1
}
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/ebill/Templates/Download/648cb142-d0ab-4d56-ad8c-8a3287a87ddf", Method.Get);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated