Makbuzlara Toplu Olarak Yeni Durum Atar

Makbuzlara toplu olarak yeni durum atar.

put
Authorizations
Path parameters
operationTypestring · enumrequiredAvailable options:
Body
string · uuid[]optional
Responses
curl -L \
  --request PUT \
  --url '/eproducer/Old/Operation/{operationType}' \
  --header 'Authorization: Bearer JWT' \
  --header 'Content-Type: application/json-patch+json' \
  --data '[
    "123e4567-e89b-12d3-a456-426614174000"
  ]'
[
  "text"
]
var options = new RestClientOptions("https://apitest.nilvera.com")
{
    MaxTimeout = -1,
};

var client = new RestClient(options);
var request = new RestRequest("/eproducer/Old/Operation/UnPrint", Method.Put);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "Bearer APIKEY");

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

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

Last updated