Skip to main content

Cash Object

Represents a cash account or fund in the system.
id
number
required
Unique identifier for the cash account
name
string
required
Name of the cash account
total_amount
string
required
Current total balance (stored as string for precision)
coin
string
required
Currency type
type
string
required
Cash account type

CashMovement Object

Tracks individual cash transactions (income and expenses).
id
number
required
Unique identifier for the movement
employee_responsible
Employee
required
Employee responsible for the transaction
cash
Cash
required
Associated cash account
company
Company
required
Company associated with the movement
date
Date
required
Date of the transaction
type
string
required
Movement type
details
string
required
Description of the transaction
reference_cod
string
required
Reference code or transaction number
total_amount
string
required
Total transaction amount
bank_account
BankAccount
Associated bank account if applicable
vendor
AdministrationVendor
Vendor involved in the transaction
client
Client
Client involved in the transaction
accountant
Accountant
required
Accounting classification
category
Category
required
Transaction category
cash_movement_details
CashMovementDetails[]
required
Detailed breakdown of the movement

CashMovementDetails Object

Detailed line items for a cash movement.
id
number
required
Unique identifier for the detail line
accountant
Accountant
required
Accounting entry
category
Category
required
Category for this line item
details
string
required
Description of this line item
amount
string
required
Amount for this line item

Example

{
  "id": 1,
  "name": "Caja Chica USD",
  "total_amount": "25000.00",
  "coin": "DOLARES",
  "type": "EFECTIVO"
}
{
  "id": 42,
  "date": "2026-03-11T14:30:00Z",
  "type": "OUTPUT",
  "details": "Payment for office supplies",
  "reference_cod": "EG-2026-0042",
  "total_amount": "1500.00",
  "cash": {
    "id": 1,
    "name": "Caja Chica USD",
    "coin": "DOLARES"
  },
  "cash_movement_details": [
    {
      "id": 1,
      "details": "Paper and printer supplies",
      "amount": "1500.00",
      "category": {
        "id": 5,
        "name": "Office Supplies"
      }
    }
  ]
}

Build docs developers (and LLMs) love