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

Health

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

Operations

Accounts

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

Operations

Items

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

Operations

Classifications

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

Operations

Classifications Lines

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

Companies

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

Operations

Approval Policies

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

Inbox

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)
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&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[].​amountAmount (number) or Amount (string)(Amount)required
Any of:
number(Amount)
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
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
countinteger(Count)required
Response
application/json
{ "items": [ { … } ], "count": 0 }

Journal Entries

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

Operations

Recurring Journal Entries

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

Operations

Invoices

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

Operations

Sales Orders

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

Operations

Recurring Invoices

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

Operations

Customers

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

Customer Payments

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

Operations

Customer Prepayments

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

Operations

Customer Prepayment Applications

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

Operations

Customer Deposits

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

Customer Refunds

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

Operations

Customer Credits

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

Cash Sales

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

Bills

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

Recurring Bills

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

Operations

Purchase Orders

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

Operations

Vendors

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

Vendor Payments

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

Operations

Vendor Credits

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

Vendor Refunds

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

Operations

Paper Checks

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

Operations