Rapor İndirir

Muhasebe raporunu indirir.

POST/report/Accounting/{UUID}/download
Path parameters
UUID*string (uuid)
Response

Muhasebe raporunu indirir.

Body
string
Request
const response = await fetch('/report/Accounting/{UUID}/download', {
    method: 'POST',
    headers: {},
});
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("/report/Accounting/d1fdf61e-0ab5-433d-9b19-de09425b1e46/download", Method.Post);
request.AddHeader("Authorization", "APIKEY");
var body = @"";
request.AddParameter("text/plain", body,  ParameterType.RequestBody);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated