İrsaliyenin Pdf'i Getirilir

Pdf dosyasını indirir.

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

Pdf dosyasını indirir.

Request
const response = await fetch('/edespatch/Sale/{UUID}/pdf', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
var client = new RestClient("https://apitest.nilvera.com/edespatch/Sale/64eea613-3c5f-434c-9dfd-c6856a938781/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);