Makbuza Özel Kod Ataması Yapılır

Makbuza özel kod ataması yapılır.

PUT/eproducer/Producers/SpecialCode
Body
UUIDnullable array of string (uuid)
SpecialCodenullable string
Response

Makbuza özel kod ataması yapılır.

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

var body = new
{
    UUID = new List<string> { "3fa85f64-5717-4562-b3fc-2c963f66afa6" },
    SpecialCode = "string"
};

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

Last updated