Etiket Güncellenir

Etiket günceller.

PUT/earchive/Tags
Body
UUIDstring (uuid)
Namenullable string
Descriptionnullable string
Colornullable string
Response

Etiket günceller.

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