Financial Movement

List Financial Movement

GET /v1/insurer-accounting/financial-movement

URL Parameters
ParameterDescription
rowsA limit of objects to be returned, between 1 and 100 itemsOptional
pageThe page for the list of objects to returnOptional
cursorThe cursor of the current page list of objectsOptional
Response

The above request returns JSON structured like this:

ParameterDescription
totalThe total of items
items.amountAmount for the financial movement
items.balanceBalance amount when the movement has ben processed
items.is_processingThe flag that marks if the current movement is being processed
items.process_dateThe process date for this movement
items.dateThe date when the movement was created
Response complementary

Some financial movements can also be related with following entities:

ParameterDescription
items.policyThe policy associated with this movement
items.effectThe effect associated with this movement
items.cash_flowThe cash flow record associated with this movement
{
  "total": 0,
  "items": [
    {
      "id": "string",
      "amount": 0,
      "balance": 0,
      "is_processing": false,
      "policy": {},
      "effect": {},
      "cash_flow": {},
      "process_date": "string",
      "date": "string"
    }
  ]
}