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

Request

Query
searchstring or null(Search)
idArray of integers or null(Id)
namestring or null(Name)
item_typeArray of strings or null(Item Type)
Enum"good""service""discount"
no_income_accountboolean or null(No Income Account)
no_expense_accountboolean or null(No Expense Account)
no_deferral_accountboolean or null(No Deferral Account)
no_asset_accountboolean or null(No Asset Account)
no_discount_accountboolean or null(No Discount Account)
expense_account_idArray of integers or null(Expense Account Id)
income_account_idArray of integers or null(Income Account Id)
deferral_account_idArray of integers or null(Deferral Account Id)
asset_account_idArray of integers or null(Asset Account Id)
discount_account_idArray of integers or null(Discount Account Id)
is_activeboolean or null(Is Active)
record_statusArray of strings or null(Record Status)
Enum"draft""posted""archived"
show_inactiveboolean(Show Inactive)
Default false
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/items/?search=string&id=0&name=string&item_type=good&no_income_account=true&no_expense_account=true&no_deferral_account=true&no_asset_account=true&no_discount_account=true&expense_account_id=0&income_account_id=0&deferral_account_id=0&asset_account_id=0&discount_account_id=0&is_active=true&record_status=draft&show_inactive=false&limit=100&offset=0'

Responses

OK

Bodyapplication/json
itemsArray of objects(Items)required
items[].​created_byobject or null(AuditActorSchemaOut)

Schema for audit actor information.

items[].​updated_byobject or null(AuditActorSchemaOut)

Schema for audit actor information.

items[].​idinteger(Id)required
items[].​namestring(Name)required
items[].​skustring(Sku)required
items[].​descriptionstring(Description)required
items[].​item_typestring(ItemTypes)required
Enum"good""service""discount"
items[].​is_activeboolean(Is Active)required
items[].​record_statusstring(RecordStatus)required
Enum"draft""posted""archived"
items[].​expense_account_idinteger or null(Expense Account Id)required
items[].​income_account_idinteger or null(Income Account Id)required
items[].​deferral_account_idinteger or null(Deferral Account Id)required
items[].​asset_account_idinteger or null(Asset Account Id)required
items[].​discount_account_idinteger or null(Discount Account Id)required
items[].​default_classification_line_idsArray of integers or null(Default Classification Line Ids)
items[].​default_rev_rec_methodstring or null(RecognitionStrategy)
Enum"straight_line""straight_line_start_end_even""daily_prorata""milestone""usage_tiered""usage""immediate""deposit_release"
items[].​default_rev_rec_invoice_frequencystring or null(RecognitionCadence)
Enum"daily""weekly""monthly""annually"
items[].​default_rev_rec_invoice_intervalinteger or null(Default Rev Rec Invoice Interval)
countinteger(Count)required
Response
application/json
{ "items": [ { … } ], "count": 0 }

Request

Bodyapplication/jsonrequired
namestring(Name)[ 2 .. 256 ] charactersrequired
is_activeboolean(Is Active)required
skustring(Sku)[ 1 .. 64 ] charactersrequired
descriptionstring(Description)[ 0 .. 512 ] characters
Default ""
item_typestring(ItemTypes)required
Enum"good""service""discount"
record_statusstring(RecordStatus)
Default "posted"
Enum"draft""posted""archived"
expense_account_idinteger or null(Expense Account Id)required
income_account_idinteger or null(Income Account Id)required
deferral_account_idinteger or null(Deferral Account Id)required
asset_account_idinteger or null(Asset Account Id)required
discount_account_idinteger or null(Discount Account Id)
default_classification_line_idsArray of integers or null(Default Classification Line Ids)
default_rev_rec_methodstring or null(RecognitionStrategy)
Enum"straight_line""straight_line_start_end_even""daily_prorata""milestone""usage_tiered""usage""immediate""deposit_release"
default_rev_rec_invoice_frequencystring or null(RecognitionCadence)
Enum"daily""weekly""monthly""annually"
default_rev_rec_invoice_intervalinteger or null(Default Rev Rec Invoice Interval)>= 1
curl -i -X POST \
  https://api.dualentry.com/public/v1/items/ \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "is_active": true,
    "sku": "string",
    "description": "",
    "item_type": "good",
    "record_status": "posted",
    "expense_account_id": 0,
    "income_account_id": 0,
    "deferral_account_id": 0,
    "asset_account_id": 0,
    "discount_account_id": 0,
    "default_classification_line_ids": [
      0
    ],
    "default_rev_rec_method": "straight_line",
    "default_rev_rec_invoice_frequency": "daily",
    "default_rev_rec_invoice_interval": 1
  }'

Responses

OK

Bodyapplication/json
created_byobject or null(AuditActorSchemaOut)

Schema for audit actor information.

updated_byobject or null(AuditActorSchemaOut)

Schema for audit actor information.

idinteger(Id)required
namestring(Name)required
skustring(Sku)required
descriptionstring(Description)required
item_typestring(ItemTypes)required
Enum"good""service""discount"
is_activeboolean(Is Active)required
record_statusstring(RecordStatus)required
Enum"draft""posted""archived"
expense_account_idinteger or null(Expense Account Id)required
income_account_idinteger or null(Income Account Id)required
deferral_account_idinteger or null(Deferral Account Id)required
asset_account_idinteger or null(Asset Account Id)required
discount_account_idinteger or null(Discount Account Id)required
default_classification_line_idsArray of integers or null(Default Classification Line Ids)
default_rev_rec_methodstring or null(RecognitionStrategy)
Enum"straight_line""straight_line_start_end_even""daily_prorata""milestone""usage_tiered""usage""immediate""deposit_release"
default_rev_rec_invoice_frequencystring or null(RecognitionCadence)
Enum"daily""weekly""monthly""annually"
default_rev_rec_invoice_intervalinteger or null(Default Rev Rec Invoice Interval)
Response
application/json
{ "created_by": { "actor_type": "string", "email": "string", "first_name": "string", "last_name": "string", "timestamp": "2019-08-24T14:15:22Z" }, "updated_by": { "actor_type": "string", "email": "string", "first_name": "string", "last_name": "string", "timestamp": "2019-08-24T14:15:22Z" }, "id": 0, "name": "string", "sku": "string", "description": "string", "item_type": "good", "is_active": true, "record_status": "draft", "expense_account_id": 0, "income_account_id": 0, "deferral_account_id": 0, "asset_account_id": 0, "discount_account_id": 0, "default_classification_line_ids": [ 0 ], "default_rev_rec_method": "straight_line", "default_rev_rec_invoice_frequency": "daily", "default_rev_rec_invoice_interval": 0 }

Request

Path
item_idinteger(Item Id)required
curl -i -X GET \
  'https://api.dualentry.com/public/v1/items/{item_id}/'

Responses

OK

Bodyapplication/json
created_byobject or null(AuditActorSchemaOut)

Schema for audit actor information.

updated_byobject or null(AuditActorSchemaOut)

Schema for audit actor information.

idinteger(Id)required
namestring(Name)required
skustring(Sku)required
descriptionstring(Description)required
item_typestring(ItemTypes)required
Enum"good""service""discount"
is_activeboolean(Is Active)required
record_statusstring(RecordStatus)required
Enum"draft""posted""archived"
expense_account_idinteger or null(Expense Account Id)required
income_account_idinteger or null(Income Account Id)required
deferral_account_idinteger or null(Deferral Account Id)required
asset_account_idinteger or null(Asset Account Id)required
discount_account_idinteger or null(Discount Account Id)required
default_classification_line_idsArray of integers or null(Default Classification Line Ids)
default_rev_rec_methodstring or null(RecognitionStrategy)
Enum"straight_line""straight_line_start_end_even""daily_prorata""milestone""usage_tiered""usage""immediate""deposit_release"
default_rev_rec_invoice_frequencystring or null(RecognitionCadence)
Enum"daily""weekly""monthly""annually"
default_rev_rec_invoice_intervalinteger or null(Default Rev Rec Invoice Interval)
Response
application/json
{ "created_by": { "actor_type": "string", "email": "string", "first_name": "string", "last_name": "string", "timestamp": "2019-08-24T14:15:22Z" }, "updated_by": { "actor_type": "string", "email": "string", "first_name": "string", "last_name": "string", "timestamp": "2019-08-24T14:15:22Z" }, "id": 0, "name": "string", "sku": "string", "description": "string", "item_type": "good", "is_active": true, "record_status": "draft", "expense_account_id": 0, "income_account_id": 0, "deferral_account_id": 0, "asset_account_id": 0, "discount_account_id": 0, "default_classification_line_ids": [ 0 ], "default_rev_rec_method": "straight_line", "default_rev_rec_invoice_frequency": "daily", "default_rev_rec_invoice_interval": 0 }

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

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