For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Resources
Log inGet a demo
Get startedAPI referenceImplementation
Get startedAPI referenceImplementation
    • Overview
          • The BankFeedTransaction object
          • GET/bank-feed-transactions
          • POST/bank-feed-transactions
          • GET/bank-feed-transactions/{id}
          • GET/bank-feed-transactions/meta/post
UnifiedAgent HandlerGateway
UnifiedAgent HandlerGateway
Resources
Log inGet a demo
Common ModelsBank Feed Transactions

The BankFeedTransaction object

Beta
The BankFeedTransaction Object
1{
2 "id": "string",
3 "remote_id": "string",
4 "created_at": "2023-01-01T00:00:00Z",
5 "modified_at": "2023-01-01T00:00:00Z",
6 "bank_feed_account": "string",
7 "transaction_date": "2023-01-01T00:00:00Z",
8 "posted_date": "2023-01-01T00:00:00Z",
9 "amount": 1,
10 "description": "string",
11 "transaction_type": "string",
12 "payee": "string",
13 "credit_or_debit": "CREDIT",
14 "source_transaction_id": "string",
15 "remote_was_deleted": true,
16 "is_processed": true
17}
Was this page helpful?
Previous

/bank-feed-accounts/meta/post

Next

/bank-feed-transactions

Built with

The BankFeedTransaction object is used to represent transactions linked to a bank feed account. This includes details about the transaction such as the date, amount, description, and type.

idstringOptionalRead-onlyformat: "uuid"
remote_idstring or nullOptional

The third-party API ID of the matching object.

created_atdatetimeOptionalRead-only
The datetime that this object was created by Merge.
modified_atdatetimeOptionalRead-only
The datetime that this object was modified by Merge.
bank_feed_accountstring or nullOptionalformat: "uuid"
The bank feed account associated with the transaction.
transaction_datedatetime or nullOptional
The date that the transaction occurred.
posted_datedatetime or nullOptional
The date the transaction was posted to the bank account.
amountdouble or nullOptional
The amount of the transaction.
descriptionstring or nullOptional<=1024 characters
The description of the transaction.
transaction_typestring or nullOptional<=1024 characters
The underlying type of the transaction.
payeestring or nullOptional<=1024 characters
The person or merchant who initiated the transaction, or alternatively, to whom the transaction was paid.
credit_or_debitenum or nullOptional

If the transaction is of type debit or credit.

  • CREDIT - CREDIT
  • DEBIT - DEBIT
Allowed values:
source_transaction_idstring or nullOptional<=1024 characters

The customer’s identifier for the transaction.

remote_was_deletedbooleanOptionalRead-only

Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. Learn more.

is_processedbooleanOptionalRead-only
Whether or not this transaction has been processed by the external system. For example, NetSuite writes this field as True when the SuiteApp has processed the transaction.