Get PDF of Despatch Response

Yanıt Pdf dosyasını indirir.

GET/edespatch/Purchase/Answer/{UUID}/pdf
Path parameters
UUID*string (uuid)
Response

Yanıt Pdf dosyasını indirir.

Body
string (byte)
Request
const response = await fetch('/edespatch/Purchase/Answer/{UUID}/pdf', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
"Ynl0ZXM="
var client = new RestClient("https://apitest.nilvera.com/edespatch/Purchase/Answer/0050568C-C008-1EDD-A0A4-192134665EE4/pdf");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Last updated