Creates a Ledger by Taking the Base64 String Value of a Zip .csv File
var options = new RestClientOptions("https://apitest.nilvera.com")
{
    MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/eledger/Uploads/Base64String", Method.Post);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "Bearer <API KEY>");
var body = @"{
    ""Base64String"": ""YourBase64StringHere"",
    ""StartDate"": ""2024-04-03T11:43:38.437Z"",
    ""EndDate"": ""2024-04-03T11:43:38.437Z"",
    ""IsEmptyLedger"": true,
    ""ErpID"": 0
}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);<?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apitest.nilvera.com/eledger/Uploads/Base64String',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
  "Base64String": "string",
  "StartDate": "2024-04-03T11:43:38.437Z",
  "EndDate": "2024-04-03T11:43:38.437Z",
  "IsEmptyLedger": true,
  "ErpID": 0
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json',
    'Authorization: Bearer <API KEY>'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;const axios = require('axios');
let data = JSON.stringify({
  "Base64String": "string",
  "StartDate": "2024-04-03T11:43:38.437Z",
  "EndDate": "2024-04-03T11:43:38.437Z",
  "IsEmptyLedger": true,
  "ErpID": 0
});
let config = {
  method: 'post',
  maxBodyLength: Infinity,
  url: 'https://apitest.nilvera.com/eledger/Uploads/Base64String',
  headers: { 
    'Content-Type': 'application/json', 
    'Authorization': 'Bearer <API KEY>'
  },
  data : data
};
axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});