Etiket Güncellenir

Etiket günceller.

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

Etiket günceller.

Body
boolean
Request
const response = await fetch('/edespatch/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("/edespatch/Tags", Method.Put);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "Bearer APIKEY");

var body = new
{
    UUID = "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    Name = "string",
    Description = "string",
    Color = "string"
};

request.AddJsonBody(body);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated