Skip to content

Properties

Store structured metadata on Books, Accounts, Groups, and Transactions using key/value custom properties — for automations, integrations, and richer reporting.

Custom properties let you attach structured metadata to Books, Accounts, Groups, and Transactions as key/value pairs. This is useful for storing data such as tax rates, contact information, invoice numbers, or external references like URLs and IDs from other systems.

For the conceptual overview, see Core Concepts — Custom Properties.

By centralizing this information within your Book, you can work in context without switching between apps. For example, storing contact data on an overdue receivable account makes it possible to reach out to a client directly from Bkper — manually or through an automated process with Google Apps Script.

Book properties

Book-level properties store information that applies to the entire Book — a tax ID, company address, base currency code, or any configuration data your automations need. They are especially valuable in automated workflows where bots read Book properties to determine how they should behave.

To manage Book properties, open your Book’s Settings (⚙️), go to Configurations > Book Properties, and add or modify key/value pairs.

Bkper book properties panel showing key/value pairs for company metadata

Common examples:

KeyValuePurpose
tax_id12.345.678/0001-90Company tax identification
exc_codeBRLBase currency for exchange bots
address123 Main St, São PauloCompany contact info

Account properties

Account properties are ideal for storing contact information, external identifiers, or metadata specific to individual accounts. Emails, URLs, and phone numbers are rendered as clickable links in the chart of accounts — clicking a phone number, for example, opens your configured calling app.

To manage account properties, open the account editor, expand the properties section, and add or modify key/value pairs.

Adding custom properties to a Bkper account — entering a key and value pair in the account editor

Common examples:

KeyValuePurpose
emailclient@example.comClickable contact link
phone+55 11 99999-0000Opens calling app
exc_codeUSDCurrency for exchange bots
external_idCUST-4829Reference to an external system

Group properties

Group properties work the same way as account properties but apply to an entire group. They are commonly used to configure bot behavior — for example, setting a tax rate on an expense group so a Tax Bot can calculate taxes automatically for every transaction in accounts under that group.

To manage group properties, hover over the group name in the sidebar, click More > Edit, then expand the properties section.

Adding a custom property to a Bkper group through the group editor

Common examples:

KeyValuePurpose
tax_rate0.21Tax Bot calculates taxes at 21%
exc_amountbuyExchange Bot uses buy rate
inventory_typefifoInventory Bot uses FIFO method

Transaction properties

Transaction properties attach metadata to individual transactions — useful for storing invoice numbers, reference codes, purchase order IDs, or any other per-transaction data that doesn’t belong in the description.

To add properties, open a transaction for editing and expand the properties section to enter key/value pairs.

Adding a custom property to a Bkper transaction through the transaction editor

Common examples:

KeyValuePurpose
invoiceINV-2026-0042Invoice reference
po_numberPO-1234Purchase order tracking
receipt_urlhttps://...Link to digital receipt

Properties in Google Sheets

When you use the Bkper Add-on for Google Sheets, properties integrate seamlessly through the column header system. Any column header that is not a recognized system column automatically becomes a property key — the header is the key and each cell value is the property value.

This works for all entity types that support properties:

When you fetch data back to Sheets, properties appear as additional columns alongside the system columns, making them available for reporting and analysis.

Properties in automations

Properties are the primary configuration mechanism for Bots in Bkper. Each bot defines its own set of expected property keys — consult the documentation for the specific bot you are using to learn which properties to set.

Common patterns:

  • Book properties tell a bot how to behave globally — for example, the Exchange Bot reads exc_code from the Book to know the base currency.
  • Account properties tell a bot what applies to specific accounts — for example, exc_code: USD on an account tells the Exchange Bot which currency that account tracks.
  • Group properties configure behavior for entire groups — for example, the Tax Bot reads tax_rate from a group to calculate taxes on all transactions in that group’s accounts.
  • Transaction properties carry per-entry metadata that bots can read or write — for example, storing the calculated tax amount after processing.

Properties in the audit trail

Every property change — create, edit, or delete — generates an Event in the Book’s Activities panel. This means you have a complete history of who changed which property, when, and what the previous value was.

This is important for compliance and debugging: if an automation misbehaves because a property value was changed, you can trace exactly when and by whom the change was made.