Merge · Schema

BankFeedAccount

# The BankFeedAccount Object ### Description The `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. ### Usage Example Fetch from the `GET BankFeedAccount` endpoint to view details of a bank feed account.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
remote_id stringnull The third-party API ID of the matching object.
created_at string The datetime that this object was created by Merge.
modified_at string The datetime that this object was modified by Merge.
source_account_id stringnull The unique identifier of the source account from our customer’s platform.
target_account_id stringnull The unique identifier of the target account from the third party software.
source_account_name stringnull The name of the source account as stored in our customer’s platform.
source_account_number stringnull The human-readable account number of the source account as stored in our customer’s platform.
target_account_name stringnull The name of the target account from the third party software.
currency object The currency code of the bank feed. The currency code in ISO 4217 format.
feed_status object The status of the bank feed.
feed_start_date stringnull The start date of the bank feed’s transactions.
source_account_balance numbernull The current balance of funds in the source account.
account_type object The type of the account.
remote_was_deleted boolean 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 cove
field_mappings object
remote_data arraynull
View JSON Schema on GitHub

JSON Schema

merge-bankfeedaccount-schema.json Raw ↑
{
  "$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."
}