İrsaliye Yanıtlarını Toplu Dışarı Aktarır

İrsaliye yanıtlarını toplu olarak dışarı aktarır.

POST/edespatch/Purchase/Answer/Export/{fileType}
Path parameters
fileType*ExportType (enum)
XmlPdfEnvelopeOnePagePdf
Body
itemsstring (uuid)
Response

İrsaliye yanıtlarını toplu olarak dışarı aktarır.

Body
string
Request
const response = await fetch('/edespatch/Purchase/Answer/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 client = new RestClient("https://apitest.nilvera.com/edespatch/Purchase/Answer/Export/Xml");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"["3fa85f64-5717-4562-b3fc-2c963f66afa6"]";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);