Assign Tags to Draft Invoice

Taslak faturaya etiket atama yapılır.

PUT/einvoice/Draft/Tags
Body
DocumentUUIDstring (uuid)
Tagsnullable array of string (uuid)
Response

Faturaya etiket atama yapılır.

Body
boolean
Request
const response = await fetch('/einvoice/Draft/Tags', {
    method: 'PUT',
    headers: {
      "Content-Type": "application/json-patch+json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
false
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/einvoice/Draft/Tags", Method.Put);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "Bearer <API KEY>");
var body = "{"DocumentUUID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"Tags": ["3fa85f64-5717-4562-b3fc-2c963f66afa6"]}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);