Skip to main content
POST
/
public
/
v2
/
bank-match
/
matches
Confirm a bank-match
curl --request POST \
  --url https://api.dualentry.com/public/v2/bank-match/matches/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "financial_transaction_id": 123,
  "transaction_id": 123,
  "entry_id": 123
}
'
{
  "success": true,
  "errors": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Body

application/json

Body for POST /matches/. Pair one bank-feed row with one DualEntry target.

financial_transaction_id
integer
required

ID of the bank-feed row to match (from /bank-transactions/).

transaction_id
integer | null

DualEntry transaction id to match against. Pass this or entry_id, not both.

entry_id
integer | null

DualEntry entry id to match against (use for partial matches like a single line of a journal entry). Pass this or transaction_id.

Response

OK

success
boolean
default:true
errors
Errors · object
Last modified on May 28, 2026