Eski Faturaları Toplu Dışarı Aktarır

Faturaları toplu olarak dışarı aktarır.

post
Authorizations
Path parameters
fileTypestring · enumrequiredAvailable options:
Body
string · uuid[]optional
Responses
curl -L \
  --request POST \
  --url '/einvoice/Old/Export/{fileType}' \
  --header 'Authorization: Bearer JWT' \
  --header 'Content-Type: application/json-patch+json' \
  --data '[
    "123e4567-e89b-12d3-a456-426614174000"
  ]'
text
var client = new RestClient("https://apitest.nilvera.com/einvoice/Old/Export/Xml");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"["22d6b2ca-ba6b-47dc-a07e-846cc0e51a0e"@"]";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);