Bank transaction rule matches, used within bank transaction rules, determine how incoming bank transactions are automatically matched to existing Intacct transactions. Incoming transactions may originate from a bank feed or an import file.
Returns a collection of bank transaction rule match entries with a key, ID, and link for each match entry. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.
OK
Bad Request
{- "ia::result": [
- {
- "key": "97",
- "id": "97",
- "href": "/objects/cash-management/bank-txn-rule-match/97"
}, - {
- "key": "100",
- "id": "100",
- "href": "/objects/cash-management/bank-txn-rule-match/100"
}, - {
- "key": "104",
- "id": "104",
- "href": "/objects/cash-management/bank-txn-rule-match/104"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified bank transaction rule match entry.
key required | string System-assigned unique key for the bank transaction rule match entry. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "key": "28",
- "id": "28",
- "bankTransactionRule": {
- "id": "21",
- "key": "21",
- "href": "/objects/cash-management/bank-txn-rule/21"
}, - "intacctTxnAttribute": "amount",
- "bankTxnAttribute": "amount",
- "operator": "equals",
- "value": "100",
- "order": 2,
- "href": "/objects/cash-management/bank-txn-rule-match/28"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}