Taslaklara Yeni Durum Atar

Belgelere toplu olarak yeni durum atar.

put
Authorizations
Path parameters
operationTypestring · enumRequiredPossible values:
Body
string · uuid[]Optional
Responses
200
Belgelere toplu olarak yeni durum atar.
application/json
Responsestring[]
put
PUT /edespatch/Draft/Operation/{operationType} HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 40

[
  "123e4567-e89b-12d3-a456-426614174000"
]
[
  "text"
]
var client = new RestClient("https://apitest.nilvera.com/edespatch/Draft/Operation/UnPrint");
client.Timeout = -1;
var request = new RestRequest(Method.PUT);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"["'EDespatch.DespatchLines[0].DeliveredQuantity'  0'dan Büyük Olmalıdır."]";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Last updated