Downloads the Ledgers

UUID List alarak defteri indirir.

POST/eledger/Documents/Download
Body
UUIDListnullable array of string
Response

UUID List alarak defteri indirir.

Body
string
Request
const response = await fetch('/eledger/Documents/Download', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json-patch+json"
    },
    body: JSON.stringify({}),
});
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("/eledger/Documents/Download", Method.Post);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "Bearer <API KEY>");
var body = @"
{
    ""UUIDList"": [
        ""string""
    ]
}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);