GET
/
api
/
banking
/
recognized
/
{recognizedTransactionId}
{
  "uncategorizedTransactionId": 123,
  "referenceNo": "TRX-2024-001",
  "description": "Payment for invoice #123",
  "payee": "John Doe",
  "amount": 1500.75,
  "formattedAmount": "$1,500.75",
  "date": "2024-04-01",
  "formattedDate": "Apr 1, 2024",
  "assignedAccountId": 10,
  "assignedAccountName": "Bank Account",
  "assignedAccountCode": "1001",
  "assignedPayee": "Jane Smith",
  "assignedMemo": "Office supplies",
  "assignedCategory": "Office Expenses",
  "assignedCategoryFormatted": "Other Income",
  "withdrawal": 500,
  "deposit": 1000,
  "isDepositTransaction": true,
  "isWithdrawalTransaction": false,
  "formattedDepositAmount": "$1,000.00",
  "formattedWithdrawalAmount": "$500.00",
  "bankRuleId": "BR-001",
  "bankRuleName": "Salary Rule"
}

Headers

Authorization
string
required

Value must be 'Bearer <token>' where <token> is an API key prefixed with 'bc_' or a JWT token.

Example:

"Bearer bc_1234567890abcdef"

organization-id
string
required

Required if Authorization is a JWT token. The organization ID to operate within.

Path Parameters

recognizedTransactionId
number
required

The ID of the recognized transaction

Response

200
application/json

Returns the recognized transaction details

The response is of type object.