Upload Old Invoices

Eski faturaları yükler.

POST/einvoice/Old
Body
filestring (binary)
Response

Eski faturaları yükler.

Body
string
Request
const response = await fetch('/einvoice/Old', {
    method: 'POST',
    headers: {
      "Content-Type": "multipart/form-data"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
"text"
var client = new RestClient("https://apitest.nilvera.com/einvoice/Old");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);