Retrieve Tag Information of the Draft Invoice

Taslak faturanın etiket bilgilerini getirir.

GET/einvoice/Draft/{UUID}/Tags
Path parameters
UUID*string (uuid)
Response

Taslak faturanın etiket bilgilerini getirir.

Body
UUIDnullable string
Descriptionnullable string
Namenullable string
Colornullable string
Request
const response = await fetch('/einvoice/Draft/{UUID}/Tags', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "UUID": "text",
    "Description": "text",
    "Name": "text",
    "Color": "text"
  }
]
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/einvoice/Draft/3fa85f64-5717-4562-b3fc-2c963f66afa6/Tags", Method.Get);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);