Bank transaction rule matches

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.

List bank transaction rule matches

get/objects/cash-management/bank-txn-rule-match

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.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "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
    }
}

Get a bank transaction rule match entry

get/objects/cash-management/bank-txn-rule-match/{key}

Returns detailed information for a specified bank transaction rule match entry.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for the bank transaction rule match entry.

Example: 99
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "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
    }
}