Taslağın Html'i Getirilir

Html dosyasını indirir.

Belgeye ait html dosyasını indirmek için bu ucu kullanabilirsiniz. Search parametresiyle liste içerisinde arama yapabilirsiniz.

GET/eproducer/Draft/{UUID}/html
Path parameters
UUID*string (uuid)
Response

Html dosyasını indirir.

Body
string
Request
const response = await fetch('/eproducer/Draft/{UUID}/html', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
"text"
var client = new RestClient("https://apitest.nilvera.com/eproducer/Draft/72d5252d-5c6b-461a-b960-d6f0021cbaa9/html");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);