Adisyonlara Yeni Durum Atar

Adisyonlara toplu olarak yeni durum atar.

put

/ebill/Bills/Operation/{operationType}

Authorizations
Path parameters
operationTypeenumrequired
Options: UnPrint, Print
Body
itemsstring uuid
Responses
curl -L \
  --request PUT \
  --url '/ebill/Bills/Operation/{operationType}' \
  --header 'Authorization: Bearer JWT' \
  --header 'Content-Type: application/json-patch+json' \
  --data '[null]'
[
  "text"
]

var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/ebill/Bills/Operation/UnPrint", Method.Put);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"["1357ba09-29e1-4e65-b600-6247ddd57f93"]";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);