Rapor Oluşturur

Muhasebe raporu oluşturur.

post
Authorizations
Body
Titlestring | nullableOptional
StartDatestring · date-timeOptional
EndDatestring · date-timeOptional
Typeinteger · int32Optional
TemplateIDinteger · int32Optional
Emailstring | nullableOptional
ReportTypestring · enumOptionalPossible values:
Responses
200
Muhasebe raporu oluşturur.
application/json
Responseboolean
post
POST /report/Accounting HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 154

{
  "Title": "text",
  "StartDate": "2025-06-25T13:31:33.483Z",
  "EndDate": "2025-06-25T13:31:33.483Z",
  "Type": 1,
  "TemplateID": 1,
  "Email": "text",
  "ReportType": "Invoice"
}
true
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);

Last updated