{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BankFeedAccount", "title": "BankFeedAccount", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "remote_id": { "type": [ "string", "null" ], "description": "The third-party API ID of the matching object." }, "created_at": { "type": "string", "format": "date-time", "description": "The datetime that this object was created by Merge." }, "modified_at": { "type": "string", "format": "date-time", "description": "The datetime that this object was modified by Merge." }, "source_account_id": { "type": [ "string", "null" ], "description": "The unique identifier of the source account from our customer\u2019s platform." }, "target_account_id": { "type": [ "string", "null" ], "description": "The unique identifier of the target account from the third party software." }, "source_account_name": { "type": [ "string", "null" ], "description": "The name of the source account as stored in our customer\u2019s platform." }, "source_account_number": { "type": [ "string", "null" ], "description": "The human-readable account number of the source account as stored in our customer\u2019s platform." }, "target_account_name": { "type": [ "string", "null" ], "description": "The name of the target account from the third party software." }, "currency": { "oneOf": [ { "$ref": "#/components/schemas/TransactionCurrencyEnum" }, { "type": "null" } ], "description": "The currency code of the bank feed. The currency code in ISO 4217 format." }, "feed_status": { "oneOf": [ { "$ref": "#/components/schemas/FeedStatusEnum" }, { "type": "null" } ], "description": "The status of the bank feed." }, "feed_start_date": { "type": [ "string", "null" ], "format": "date-time", "description": "The start date of the bank feed\u2019s transactions." }, "source_account_balance": { "type": [ "number", "null" ], "format": "double", "description": "The current balance of funds in the source account." }, "account_type": { "oneOf": [ { "$ref": "#/components/schemas/BankFeedAccountAccountTypeEnum" }, { "type": "null" } ], "description": "The type of the account." }, "remote_was_deleted": { "type": "boolean", "description": "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](https://docs.merge.dev/integrations/hris/supported-features/)." }, "field_mappings": { "oneOf": [ { "$ref": "#/components/schemas/BankFeedAccountFieldMappings" }, { "type": "null" } ] }, "remote_data": { "type": [ "array", "null" ], "items": { "$ref": "#/components/schemas/RemoteData" } } }, "description": "# The BankFeedAccount Object\n### Description\nThe `BankFeedAccount` object represents a bank feed account, detailing various attributes including account identifiers, names, currency, and balance information. This object is central to managing and tracking bank feed accounts within the system.\n\n### Usage Example\nFetch from the `GET BankFeedAccount` endpoint to view details of a bank feed account." }