The BankFeedTransaction object

A Rutter Bank Feed Transaction represents a bank transaction from a Financial Institution account that has been uploaded into an accounting platform for a specific Rutter Bank Feed Account. The bank transactions synced into an accounting platform enable reconciliation for an accountant.

Properties

idstringnullable

The Rutter generated unique ID of the bank feed transaction.

bank_feed_account_idstringnullable

The Rutter generated unique ID of the linked bank feed.

transaction_idstringnullable

The Financial Institution's ID for the transaction.

posted_atstringnullable

When the transaction was posted by the Financial Institution.

amountnumbernullable

The amount of the transaction.

descriptionstringnullable

The description of the transaction.

transaction_typeenumnullable

The type of the transaction.

One ofcreditdebitinterestdividendfeeservice_chargedepositatmpostransfercheckpaymentdirect_debitcashrepeat_paymenthold, or unknown.
Example BankFeedTransaction Object
{
  "id": "00000000-0000-0000-0000-000000000000",
  "bank_feed_account_id": "00000000-0000-0000-0000-000000000000",
  "transaction_id": "ACRAF23DB3C4",
  "posted_at": "2023-02-02T02:34:56.000Z",
  "amount": -300,
  "description": "Office supplies",
  "transaction_type": "debit"
}

List Bank Feed Transactions

GET /accounting/bank_feeds/transactions
Supported for: Sage Business CloudSage Intacct

Request Parameters

    access_tokenstringquery

    The access token of the connection.

    cursorstringoptionalquery

    The cursor to use for pagination. This value is passed in from next_cursor field in a previous request.

    expandenumoptionalquery

    Used to request inclusion of optional objects.

    Can beplatform_data.
    force_fetchenumoptionalquery

    Force a response even if the underlying connection hasn't finished the initial sync.

    One oftrue or false.
    limitintegeroptionalquery

    The limit on the number of entities returned.

    updated_at_maxintegeroptionalquery

    Unix Timestamp in milliseconds representing the maximum updated_at datetime to fetch entities from.

    updated_at_minintegeroptionalquery

    Unix Timestamp in milliseconds representing the minimum updated_at datetime to fetch entities from.

Response Body

    connectionobject
    Show connection attributes
    bank_feed_transactionsarray
    Show bank_feed_transactions attributes
    next_cursorstringnullableoptional
Example Response Body
{
  "connection": {
    "id": "00000000-0000-0000-0000-000000000000",
    "orgId": "00000000-0000-0000-0000-000000000000",
    "platform": "NETSUITE"
  },
  "bank_feed_transactions": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "bank_feed_account_id": "00000000-0000-0000-0000-000000000000",
      "transaction_id": "ACRAF23DB3C4",
      "posted_at": "2023-02-02T02:34:56.000Z",
      "amount": -300,
      "description": "Office supplies",
      "transaction_type": "debit"
    }
  ],
  "next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU="
}

Fetch a Bank Feed Transaction

GET /accounting/bank_feeds/transactions/:id
Supported for: Sage Business CloudSage Intacct

Request Parameters

    access_tokenstringquery

    The access token of the connection.

    force_fetchenumoptionalquery

    Force a response even if the underlying connection hasn't finished the initial sync.

    One oftrue or false.

Response Body

    connectionobject
    Show connection attributes
    bank_feed_transactionobject
    Show bank_feed_transaction attributes
Example Response Body
{
  "connection": {
    "id": "00000000-0000-0000-0000-000000000000",
    "orgId": "00000000-0000-0000-0000-000000000000",
    "platform": "NETSUITE"
  },
  "bank_feed_transaction": {
    "id": "00000000-0000-0000-0000-000000000000",
    "bank_feed_account_id": "00000000-0000-0000-0000-000000000000",
    "transaction_id": "ACRAF23DB3C4",
    "posted_at": "2023-02-02T02:34:56.000Z",
    "amount": -300,
    "description": "Office supplies",
    "transaction_type": "debit"
  }
}

Create Bank Feed Transactions

POST /accounting/bank_feeds/transactions
Supported for: Sage Business CloudSage Intacct

Request Parameters

    access_tokenstringquery

    The access token of the connection.

Request Body

    bank_feed_transactionsobject
    Show bank_feed_transactions attributes

Response Body

    bank_feed_transactionsarray
    Show bank_feed_transactions attributes
Example Request Body
{
  "bank_feed_transactions": {
    "bank_feed_account_id": "00000000-0000-0000-0000-000000000000",
    "transactions": [
      {
        "transaction_id": "ACRAF23DB3C4",
        "posted_at": "2023-02-02T02:34:56.000Z",
        "amount": -300,
        "description": "Office supplies",
        "transaction_type": "debit"
      }
    ]
  }
}
Example Response Body
{
  "bank_feed_transactions": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "bank_feed_account_id": "00000000-0000-0000-0000-000000000000",
      "transaction_id": "ACRAF23DB3C4",
      "posted_at": "2023-02-02T02:34:56.000Z",
      "amount": -300,
      "description": "Office supplies",
      "transaction_type": "debit"
    }
  ]
}