get_sync_status, list_account_links) live on Connections & sync.
All tools on this page are Write scope and require session_id + reason.
trigger_sync
Trigger a manual sync of bank data from the provider (Plaid or Teller). Optionally specify aconnection_id to sync a single connection; otherwise syncs all active connections. Returns immediately — the sync runs in the background. Check get_sync_status for results.
Mirrors: POST /api/v1/connections/{id}/sync
Parameters
Sync a specific connection by ID (UUID or short ID). If omitted, syncs all active connections.
Example input
Example output
connection_id, the response is Sync triggered for all connections.
create_account_link
Link a dependent account to a primary account for cross-connection deduplication. When two family members connect the same credit card (primary cardholder + authorized user), transactions appear in both feeds. This link pairs matching transactions by date + amount, excludes the dependent’s copies from totals, and attributes matched primary-side transactions to the dependent user. Automatically runs initial reconciliation after creation — the response includes both the link and the first-pass match results.Parameters
The primary cardholder’s account ID (UUID or short ID).
The authorized/dependent user’s account ID.
Matching strategy. Currently only
date_amount_name is supported.Date tolerance in days.
0 = same day.Example input
Example output
delete_account_link
Remove an account link and clear all transaction attribution set by it. Transactions from the dependent account will be included in totals again.Parameters
The account link ID.
Example input
Example output
reconcile_account_link
Manually trigger match reconciliation for an account link. Finds unmatched dependent transactions and attempts to pair them with primary account transactions by date and exact amount. Matched primary transactions are attributed to the dependent user. Use aftercreate_account_link has already run (it reconciles on create) if you want to pick up new charges without waiting for the next sync cycle.
Parameters
The account link ID to reconcile.