Route Accounting

Additional financial information about the route may be tracked during the route to help with operational goals. Please use our route accounting API for other tracking options.

Models

Route Accounting Record

A Route Accounting record is used to audit how much cash is stored in different containers.

Important

Route Accounting Record id has to be globally unique. You cannot have multiple records with the same id.

Property Type Nullable Description
id string false The globally unique id of the record.
cash_received_cents float false The amount of cash in cents in the container.
cash_container_id string false The id of the container containing the cash.
driver_id string false Driver’s id that placed the cash in the container.
{
  "id": "globally unique record id",
  "driver_id": "globally unique driver id",
  "cash_received_cents": 9999,
  "cash_container_id": "bag ABC"
}