Rapor Xml'i Getirir

Rapor Xml dosyasını indirir.

GET/evoucher/Report/{UUID}/xml
Path parameters
UUID*string (uuid)
Response

Rapor Xml dosyasını indirir.

Body
string
Request
const response = await fetch('/evoucher/Report/{UUID}/xml', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
"text"
var client = new RestClient("https://apitest.nilvera.com/evoucher/Report/72e21125-645f-4acb-82bb-33afd5156592/xml");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);