v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Banking > BankAccount

Create manuals a Bank account

Create a manual bank account.

post/api/2026-07-01/resources/banking/bank_accounts/create_manual

Request body

legal_entity_idstring required

Factorial unique identifier of the legal entity.

currencystring required

Currency of bank account.

account_numberstring required

Account number.

account_number_type'iban' | 'sort_code_and_account_number' | 'routing_number_and_account_number' | 'clabe' | 'bank_name_and_account_number' | 'other' required

Account number type.

account_aliasstring

Alias for the bank account.

ledger_account_idstring

Factorial unique identifier of the ledger account.

bank_account_membership_employee_idsstring[]

An array of bank account membership employee IDs.

external_idstring

External ID for the bank account.

Example request

{
  "currency": "EUR",
  "account_number": "ES28209582976036485969781",
  "account_number_type": "iban",
  "account_alias": "My Bank Account",
  "ledger_account_id": "135",
  "bank_account_membership_employee_ids": [
    "11"
  ],
  "external_id": "ext_135"
}

Response

OK

idstring required

Factorial unique identifier.

external_idstring required

External ID for the bank account.

currencystring required

Currency.

countrystring required

Country.

account_numberstring required

Account number.

account_number_type'iban' | 'sort_code_and_account_number' | 'routing_number_and_account_number' | 'clabe' | 'other' | 'bank_name_and_account_number' required

Account number type.

sort_codestring

Sort code.

bicstring

Bank Identifier Code.

ibanstring

International Bank Account Number.

routing_numberstring

Routing number.

account_balance_centsinteger required

Account balance in cents.

available_balance_centsinteger required

Available balance in cents.

pending_balance_centsinteger required

Pending balance in cents.

beneficiary_namestring

Beneficiary name.

bank_namestring

Bank name.

account_aliasstring

Account alias.

updated_atstring required

Last updated date.

legal_entity_idstring

Factorial unique identifier of the legal entity.

Example response

{
  "id": "1",
  "external_id": "ext_135",
  "currency": "EUR",
  "country": "es",
  "account_number": "ES28209582976036485969781",
  "account_number_type": "iban",
  "sort_code": "123456",
  "bic": "FAKEBB33",
  "iban": "ES28209582976036485969781",
  "routing_number": "12345678",
  "beneficiary_name": "factorial INC. - B66854530",
  "bank_name": "Fake Bank",
  "account_alias": "My Bank Account",
  "updated_at": "2021-01-01T00:00:00.000Z",
  "legal_entity_id": "11"
}