List of operations

Endpoints

List of operations

POST/api/RPC.common.Api.ListOperation.get?token=<TOKEN>

Key ListOperation.get · Open page

Parameters

3 body parameters inside data[]
FieldTypeDescription
typerequiredStringOperation type
from_daterequiredStringFrom date
to_daterequiredStringTo date

Request example

Request:
{
   "data" : [
      {
         "type" : "receipt",
         "from_date" : "2026-09-01",
         "to_date" : "2026-09-30"
      }
   ]
}

cURL

Request:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "type" : "receipt",         "from_date" : "2026-09-01",         "to_date" : "2026-09-30"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.ListOperation.get?token=<TOKEN>"