Makbuzları Toplu Olarak Dışarı Aktarır

Makbuzları toplu olarak dışarı aktarır.

post
Authorizations
Path parameters
fileTypestring · enumRequiredPossible values:
Body
string · uuid[]Optional
Responses
200
Makbuzları toplu olarak dışarı aktarır
application/json
Responsestring
post
POST /eproducer/Old/Export/{fileType} HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 40

[
  "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/Export/Xml", Method.Post);
request.AddHeader("Authorization", "Bearer APIKEY");
var body = @"";
request.AddParameter("text/plain", body,  ParameterType.RequestBody);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated