Create a bankfeedaccount

POST/accounting/{connection_id}/bankfeedaccount

Parameters

fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection

Payload

idstring
created_atdate
creation timestamp, in ISO 8601 format and UTC (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
last-update timestamp, in ISO 8601 format and UTC (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
organization_idstring
ref -> accounting Organization this record belongs to
namestring
account nickname / source name
bank_namestring
bank / institution name
account_numberstring
full account number where available
account_number_last4string
last-4 when the full number isn't returned
routing_numberstring
bank routing number
account_type enum
Valid values:
"CHECKING"
"SAVINGS"
"CREDIT_CARD"
"LOAN"
"OTHER"
CHECKING, SAVINGS, CREDIT_CARD, LOAN, OTHER
account_idstring
ref -> AccountingAccount: the target GL account the feed posts into (reference to AccountingAccount)
currencystring
ISO 4217 currency of the account
balancenumber
current balance of the source account
feed_start_atdate
date the feed begins delivering transactions (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
status enum
Valid values:
"ACTIVE"
"INACTIVE"
feed state: ACTIVE, INACTIVE

Returns

idstring
created_atdate
creation timestamp, in ISO 8601 format and UTC (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
last-update timestamp, in ISO 8601 format and UTC (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
organization_idstring
ref -> accounting Organization this record belongs to
namestring
account nickname / source name
bank_namestring
bank / institution name
account_numberstring
full account number where available
account_number_last4string
last-4 when the full number isn't returned
routing_numberstring
bank routing number
account_type enum
Valid values:
"CHECKING"
"SAVINGS"
"CREDIT_CARD"
"LOAN"
"OTHER"
CHECKING, SAVINGS, CREDIT_CARD, LOAN, OTHER
account_idstring
ref -> AccountingAccount: the target GL account the feed posts into (reference to AccountingAccount)
currencystring
ISO 4217 currency of the account
balancenumber
current balance of the source account
feed_start_atdate
date the feed begins delivering transactions (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
status enum
Valid values:
"ACTIVE"
"INACTIVE"
feed state: ACTIVE, INACTIVE
const options = {
  method: 'POST',
  url: 'https://api.unified.to/accounting/5de520f96e439b002043d8dc/bankfeedaccount',
  headers: {
    authorization: 'bearer .....'
  },
  data: undefined,
  params: {
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?