Rapor Oluşturur
Muhasebe raporu oluşturur.
POST/report/Accounting
Body
Titlenullable string
StartDatestring (date-time)
EndDatestring (date-time)
Typeinteger (int32)
TemplateIDinteger (int32)
Emailnullable string
ReportTypeReportType (enum)
InvoiceVoucherProducer
Response
Muhasebe raporu oluşturur.
Body
boolean
Request
const response = await fetch('/report/Accounting', {
method: 'POST',
headers: {
"Content-Type": "application/json-patch+json"
},
body: JSON.stringify({}),
});
const data = await response.json();
Response
false
var options = new RestClientOptions("https://apitest.nilvera.com")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/report/Accounting", Method.Post);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "APIKEY");
var body = new
{
Title = "string",
StartDate = DateTime.Parse("2024-07-04T08:36:14.479Z"),
EndDate = DateTime.Parse("2024-07-04T08:36:14.479Z"),
Type = 0,
TemplateID = 0,
Email = "string",
ReportType = "Invoice"
};
request.AddJsonBody(body);
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/report/Accounting',
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 =>'{
"Title": "string",
"StartDate": "2024-07-04T08:36:14.479Z",
"EndDate": "2024-07-04T08:36:14.479Z",
"Type": 0,
"TemplateID": 0,
"Email": "string",
"ReportType": "Invoice"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Authorization: APIKEY'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
const axios = require('axios');
let data = JSON.stringify({
"Title": "string",
"StartDate": "2024-07-04T08:36:14.479Z",
"EndDate": "2024-07-04T08:36:14.479Z",
"Type": 0,
"TemplateID": 0,
"Email": "string",
"ReportType": "Invoice"
});
let config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://apitest.nilvera.com/report/Accounting',
headers: {
'Content-Type': 'application/json',
'Authorization': 'APIKEY'
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Last updated