Adisyonları Toplu Dışarı Aktarır

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

POST/ebill/Bills/Export/{fileType}
Path parameters
fileType*ExportType (enum)
XmlPdfEnvelopeOnePagePdf
Body
itemsstring (uuid)
Response

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

Body
string
Request
const response = await fetch('/ebill/Bills/Export/{fileType}', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json-patch+json"
    },
    body: JSON.stringify([
      "123e4567-e89b-12d3-a456-426614174000"
    ]),
});
const data = await response.json();
Response
"text"

var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/ebill/Bills/Export/Xml", Method.Post);
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);