Skip to content
Download OpenAPI description
Languages
Servers
Production environment
https://api.dualentry.com
Development environment (for testing)
https://api-dev.dualentry.com

Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.

Operations

Manage your chart of accounts. Create and maintain the accounts used to categorize financial transactions, including assets, liabilities, equity, revenue, and expenses.

Operations

Manage products and services. Define items that appear on invoices and bills, including pricing, descriptions, and associated accounts for revenue or expense tracking.

Operations

Manage custom classification dimensions. Create and maintain classification categories (e.g., departments, locations, projects) used to tag and analyze transactions across multiple dimensions.

Operations

Manage classification values. Define the specific values within each classification category that can be assigned to transaction line items for detailed reporting and analysis.

Operations

Access and manage company information. Retrieve details about your organization including legal name, tax identifiers, addresses, and accounting preferences.

Operations

Manage approval workflows and policies. Define approval rules, steps, conditions, and approvers for different record types. Monitor workflow execution states and view approval history.

Operations

View pending approvals and approval status. Access transactions and records awaiting approval across the organization, including full approval workflow details, approvers, and action history.

Operations

Request

Get counts of pending approvals in the inbox for the entire organization.

Query
searchstring or null(Search)
curl -i -X GET \
  'https://api.dualentry.com/public/v1/inbox/?search=string'

Responses

OK

Bodyapplication/json
transactions_countinteger(Transactions Count)required
records_countinteger(Records Count)required
Response
application/json
{ "transactions_count": 0, "records_count": 0 }

Request

Retrieve all transactions (invoices, bills, purchase orders, sales orders, journal entries) with workflow approval status for the organization.

Query
searchstring or null(Search)
transaction_typeArray of strings or null(Transaction Type)
approval_statusArray of strings or null(Approval Status)
company_idArray of integers or null(Company Id)
start_datestring or null(date)(Start Date)
end_datestring or null(date)(End Date)
customer_idArray of integers or null(Customer Id)
record_idArray of integers or null(Record Id)
transaction_idArray of integers or null(Transaction Id)
min_amountMin Amount (number) or Min Amount (string) or Min Amount (null)(Min Amount)
Any of:
number(Min Amount)
max_amountMax Amount (number) or Max Amount (string) or Max Amount (null)(Max Amount)
Any of:
number(Max Amount)
limitinteger(Limit)>= 1

Number of records to return per page (capped at 100)

Default 100
offsetinteger(Offset)>= 0

Number of records to skip before starting to return results

Default 0
curl -i -X GET \
  'https://api.dualentry.com/public/v1/inbox/transactions/?search=string&transaction_type=string&approval_status=string&company_id=0&start_date=2019-08-24&end_date=2019-08-24&customer_id=0&record_id=0&transaction_id=0&min_amount=0&max_amount=0&limit=100&offset=0'

Responses

OK

Bodyapplication/json
itemsArray of objects(Items)required
items[].​transaction_typestring(Transaction Type)required
items[].​numberstring(Number)required
items[].​datestring(date)(Date)required
items[].​customer_vendorstring or null(Customer Vendor)required
items[].​companystring(Company)required
items[].​company_idinteger(Company Id)required
items[].​memostring(Memo)required
items[].​amountstring(Amount)^(?!^[-+.]*$)[+-]?0*\d*\.?\d{0,2}0*$required
items[].​approval_statusstring(Approval Status)required
items[].​workflow_idinteger(Workflow Id)required
items[].​record_idinteger(Record Id)required
items[].​created_atstring(date-time)(Created At)required
items[].​updated_atstring(date-time)(Updated At)required
items[].​approval_infoobject or null(PublicApprovalInfoSchema)required

Schema for complete approval workflow information.

items[].​approval_info.​workflow_namestring(Workflow Name)required
items[].​approval_info.​workflow_versioninteger(Workflow Version)required
items[].​approval_info.​step_namestring(Step Name)required
items[].​approval_info.​current_substepinteger(Current Substep)required
items[].​approval_info.​substepsArray of objects(Substeps)required
items[].​approval_info.​substeps[].​orderinteger(Order)required
items[].​approval_info.​substeps[].​statusstring(SubstepStatus)required

Status of a substep in the approval workflow.

Enum"completed""pending""not_started"
items[].​approval_info.​substeps[].​approve_conditionstring(ApproveCondition)required

Condition for approving a substep.

Enum"any""all"
items[].​approval_info.​substeps[].​approversArray of objects(Approvers)required
items[].​approval_info.​substeps[].​approvers[].​idinteger(Id)required
items[].​approval_info.​substeps[].​approvers[].​first_namestring(First Name)required
items[].​approval_info.​substeps[].​approvers[].​last_namestring(Last Name)required
items[].​approval_info.​substeps[].​approvers[].​emailstring(Email)required
items[].​approval_info.​substeps[].​approvers[].​full_namestring(Full Name)required
items[].​approval_info.​substeps[].​approved_byArray of objects(Approved By)required
items[].​approval_info.​substeps[].​approved_by[].​idinteger(Id)required
items[].​approval_info.​substeps[].​approved_by[].​first_namestring(First Name)required
items[].​approval_info.​substeps[].​approved_by[].​last_namestring(Last Name)required
items[].​approval_info.​substeps[].​approved_by[].​emailstring(Email)required
items[].​approval_info.​substeps[].​approved_by[].​full_namestring(Full Name)required
items[].​approval_info.​substeps[].​rejected_byArray of objects(Rejected By)required
items[].​approval_info.​substeps[].​rejected_by[].​idinteger(Id)required
items[].​approval_info.​substeps[].​rejected_by[].​first_namestring(First Name)required
items[].​approval_info.​substeps[].​rejected_by[].​last_namestring(Last Name)required
items[].​approval_info.​substeps[].​rejected_by[].​emailstring(Email)required
items[].​approval_info.​substeps[].​rejected_by[].​full_namestring(Full Name)required
items[].​initiator_idinteger or null(Initiator Id)
countinteger(Count)required
Response
application/json
{ "items": [ { … } ], "count": 0 }

Request

Retrieve all non-monetary records (customers, vendors) with workflow approval status for the organization.

Query
searchstring or null(Search)
record_typeArray of strings or null(Record Type)
approval_statusArray of strings or null(Approval Status)
record_idArray of integers or null(Record Id)
limitinteger(Limit)>= 1

Number of records to return per page (capped at 100)

Default 100
offsetinteger(Offset)>= 0

Number of records to skip before starting to return results

Default 0
curl -i -X GET \
  'https://api.dualentry.com/public/v1/inbox/records/?search=string&record_type=string&approval_status=string&record_id=0&limit=100&offset=0'

Responses

OK

Bodyapplication/json
itemsArray of objects(Items)required
items[].​record_typestring(Record Type)required
items[].​namestring(Name)required
items[].​approval_statusstring(Approval Status)required
items[].​approverstring(Approver)required
items[].​workflow_idinteger(Workflow Id)required
items[].​record_idinteger(Record Id)required
items[].​created_atstring(date-time)(Created At)required
items[].​updated_atstring(date-time)(Updated At)required
items[].​approval_infoobject or null(PublicApprovalInfoSchema)required

Schema for complete approval workflow information.

items[].​approval_info.​workflow_namestring(Workflow Name)required
items[].​approval_info.​workflow_versioninteger(Workflow Version)required
items[].​approval_info.​step_namestring(Step Name)required
items[].​approval_info.​current_substepinteger(Current Substep)required
items[].​approval_info.​substepsArray of objects(Substeps)required
items[].​approval_info.​substeps[].​orderinteger(Order)required
items[].​approval_info.​substeps[].​statusstring(SubstepStatus)required

Status of a substep in the approval workflow.

Enum"completed""pending""not_started"
items[].​approval_info.​substeps[].​approve_conditionstring(ApproveCondition)required

Condition for approving a substep.

Enum"any""all"
items[].​approval_info.​substeps[].​approversArray of objects(Approvers)required
items[].​approval_info.​substeps[].​approvers[].​idinteger(Id)required
items[].​approval_info.​substeps[].​approvers[].​first_namestring(First Name)required
items[].​approval_info.​substeps[].​approvers[].​last_namestring(Last Name)required
items[].​approval_info.​substeps[].​approvers[].​emailstring(Email)required
items[].​approval_info.​substeps[].​approvers[].​full_namestring(Full Name)required
items[].​approval_info.​substeps[].​approved_byArray of objects(Approved By)required
items[].​approval_info.​substeps[].​approved_by[].​idinteger(Id)required
items[].​approval_info.​substeps[].​approved_by[].​first_namestring(First Name)required
items[].​approval_info.​substeps[].​approved_by[].​last_namestring(Last Name)required
items[].​approval_info.​substeps[].​approved_by[].​emailstring(Email)required
items[].​approval_info.​substeps[].​approved_by[].​full_namestring(Full Name)required
items[].​approval_info.​substeps[].​rejected_byArray of objects(Rejected By)required
items[].​approval_info.​substeps[].​rejected_by[].​idinteger(Id)required
items[].​approval_info.​substeps[].​rejected_by[].​first_namestring(First Name)required
items[].​approval_info.​substeps[].​rejected_by[].​last_namestring(Last Name)required
items[].​approval_info.​substeps[].​rejected_by[].​emailstring(Email)required
items[].​approval_info.​substeps[].​rejected_by[].​full_namestring(Full Name)required
items[].​initiator_idinteger or null(Initiator Id)
countinteger(Count)required
Response
application/json
{ "items": [ { … } ], "count": 0 }

Manage financial budgets. Create and track income statement and balance sheet budgets with monthly cell values, actuals comparison, and classification filtering.

Operations

Create and manage manual journal entries. Record direct debits and credits to accounts for adjustments, accruals, reclassifications, and other accounting transactions.

Operations

Automate recurring journal entries. Create templates for journal entries that occur regularly (e.g., monthly depreciation, amortization) to ensure consistent accounting treatment.

Operations

Manage bank-to-bank transfers. Record and track transfers between bank and credit card accounts, including multi-currency transfers with exchange rate handling.

Operations

Manage sales invoices. Create and track invoices sent to customers for goods or services rendered, including line items, taxes, discounts, and payment status.

Operations

Manage revenue recognition contracts. Create and retrieve contracts with performance obligations, and manage obligation usage for usage-based obligations.

Operations

Create and manage sales orders. Track customer orders for goods or services before invoicing, including line items, quantities, fulfillment status, and invoicing progress.

Operations

Automate recurring billing. Set up and manage templates for invoices that are automatically generated on a regular schedule (e.g., monthly subscriptions).

Operations

Manage customer records. Create, update, and track customers who purchase goods or services from your organization, including contact information, billing addresses, and payment terms.

Operations

Record and manage customer payments. Track payments received from customers and apply them to outstanding invoices, including partial payments and overpayments.

Operations

Track advance payments from customers. Access prepayments received before goods or services are delivered, which can be applied to future invoices.

Operations

Apply customer prepayments and credits to invoices. Record applications of prepayments or credit memos to reduce invoice balances.

Operations

Manage customer deposit transactions. Record and track deposits received from customers as security or partial payment, held in liability accounts until earned or refunded.

Operations

Process and track customer refunds. Record refunds issued to customers for overpayments, returns, or cancelled transactions.

Operations

Manage credit memos for customers. Issue credits for returned goods, billing adjustments, or discounts that reduce customer balances or can be applied to future invoices.

Operations

Record immediate cash sales transactions. Track sales where payment is received at the time of sale, including point-of-sale transactions and cash receipts.

Operations

Manage vendor bills and payables. Record and track bills received from vendors for goods or services purchased, including line items, due dates, and payment tracking.

Operations

Automate recurring expenses. Configure templates for bills that repeat on a regular basis (e.g., monthly rent, subscriptions) to streamline expense tracking.

Operations

Create and track purchase orders. Manage formal requests to vendors for goods or services, including approval workflows, receiving tracking, and bill matching.

Operations

Record direct expense transactions. Track payments made directly from a bank or credit card account for expenses, without going through the accounts payable process.

Operations

Manage vendor and supplier records. Track businesses and individuals from whom you purchase goods or services, including contact details, payment terms, and tax information.

Operations

Record and manage vendor payments. Track payments made to vendors and apply them to outstanding bills and credits, including partial payments and overpayments.

Operations

Track advance payments to vendors. Record prepayments made before goods or services are received, which can be applied to future bills.

Operations

Apply vendor prepayments to bills. Record applications of prepayments to reduce bill balances and track amounts owed.

Operations

Manage vendor credit memos. Record credits from vendors for returned goods, billing adjustments, or discounts that reduce amounts owed or can be applied to future bills.

Operations

Process and track vendor refunds. Record refunds received from vendors for overpayments, returns, or cancelled transactions.

Operations

Manage paper check printing. Create, queue, and batch print paper checks for vendor payments, direct expenses, vendor prepayments, and customer refunds.

Operations

Manage fixed assets and capital equipment. Create, update, and track long-lived tangible assets including depreciation schedules, account assignments, and asset lifecycle management.

Operations