For the complete documentation index, see llms.txt. This page is also available as Markdown.

Creates Accounting Report Template

Muhasebe rapor şablonu oluşturur.

post
Authorizations
HTTPRequired

API anahtar� giriniz

Body
Namestring · nullableOptional
Typeinteger · int32Optional
ReportTypestring · enumRequiredPossible values:
Responses
200

Muhasebe rapor şablonu oluşturur.

application/json
Namestring · nullableOptional
CreatedDatestring · date-timeOptional
Columnsstring · nullableOptional
Typeinteger · int32Optional
IDinteger · int32Optional
post/Accounting/Template
POST /report/Accounting/Template HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 82

{
  "Name": "text",
  "Type": 1,
  "Columns": [
    {
      "Name": "text",
      "ID": 1
    }
  ],
  "ReportType": "Invoice"
}
{
  "Name": "text",
  "CreatedDate": "2026-01-01T00:00:00.000Z",
  "Columns": "text",
  "Type": 1,
  "ID": 1
}
var client = new RestClient("https://apitest.nilvera.com/general/AccountingReport/Template");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"{"Name": "string",
"Type": 0,
"Columns": ["Name": "string","ID": 0"}";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apitest.nilvera.com/general/AccountingReport/Template',
  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 =>'{
  "Name": "string",
  "Type": 0,
  "Columns": [
    {
      "Name": "string",
      "ID": 0
    }
  ]
}',
  CURLOPT_HTTPHEADER => array(
    'Authorization: Bearer <API KEY>',
    'Content-Type: application/json'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

Last updated