POST Dashboard/GetAccountingStatistic

Request Information

URI Parameters

None.

Body Parameters

DashboardFilter
NameDescriptionTypeAdditional information
FromDate

date

None.

ToDate

date

None.

CompanyId

integer

None.

BranchId

integer

None.

IsCompanyCenterialized

integer

None.

language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "FromDate": "2025-10-29T06:03:53.129812+03:00",
  "ToDate": "2025-10-29T06:03:53.129812+03:00",
  "CompanyId": 3,
  "BranchId": 4,
  "IsCompanyCenterialized": 5,
  "language": "sample string 6"
}

application/xml, text/xml

Sample:
<DashboardFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POCO">
  <BranchId>4</BranchId>
  <CompanyId>3</CompanyId>
  <FromDate>2025-10-29T06:03:53.129812+03:00</FromDate>
  <IsCompanyCenterialized>5</IsCompanyCenterialized>
  <ToDate>2025-10-29T06:03:53.129812+03:00</ToDate>
  <language>sample string 6</language>
</DashboardFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
ErrorCode

integer

None.

ErrorMessage

string

None.

IsScusses

boolean

None.

ResponseDetails

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "ErrorCode": 1,
  "ErrorMessage": "sample string 2",
  "IsScusses": true,
  "ResponseDetails": {}
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Accounting.API.Models">
  <ErrorCode>1</ErrorCode>
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsScusses>true</IsScusses>
  <ResponseDetails />
</Response>