Bank Accounts
Create Bank Account
Create Bank Account
post/accounting/bank-accounts
Query parameters
rawboolean
Include raw response. Mostly used for debugging purposes
Headers
x-apideck-consumer-idstring required
ID of the consumer which you want to get or push data from
x-apideck-app-idstring required
The ID of your Unify application
x-apideck-service-idstring
Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.
Request body
Example request
{
"id": "12345",
"downstream_id": "12345",
"display_id": "BA-001",
"name": "Main Operating Account",
"account_number": "123465",
"account_type": "checking",
"ledger_account": {
"id": "123456",
"name": "Bank account",
"nominal_code": "N091",
"code": "453",
"parent_id": "123456",
"display_id": "123456"
},
"bank_name": "Chase Bank",
"currency": "USD",
"balance": 25000,
"available_balance": 24500,
"overdraft_limit": 5000,
"routing_number": "021000021",
"iban": "GB33BUKB20201555555555",
"bic": "CHASUS33",
"bsb_number": "062-001",
"branch_identifier": "001",
"bank_code": "BNH",
"country": "US",
"status": "active",
"description": "Primary operating account for daily transactions",
"custom_fields": [
{
"id": "2389328923893298",
"name": "employee_level",
"description": "Employee Level",
"value": "Uses Salesforce and Marketo"
}
],
"created_at": "2020-09-30T07:43:32.000Z",
"updated_at": "2020-09-30T07:43:32.000Z",
"created_by": "12345",
"updated_by": "12345"
}Response
Bank Account created
Example response
{
"status_code": 201,
"status": "Created",
"service": "quickbooks",
"resource": "bank-accounts",
"operation": "add",
"data": {
"id": "12345"
}
}