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

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

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

Request

Retrieve a specific paper check by ID.

Returns the full details of a paper check including the associated transaction information, payee details, and current status.

Path
paper_check_idinteger(Paper Check Id)required
curl -i -X GET \
  'https://api.dualentry.io/public/v1/paper-checks/{paper_check_id}/'

Responses

OK

Bodyapplication/json
idinteger(Id)required

Unique identifier for the paper check

Example: 12345
created_atstring(date-time)(Created At)required

Date when the paper check was created (returned as date only)

Example: "2024-01-15"
transaction_datestring(date)(Transaction Date)required

Date of the underlying transaction

Example: "2024-01-15"
source_record_typestring(PaperCheckSourceRecordType)required

Type of the source record (e.g., 'direct_expense', 'vendor_payment', 'customer_refund')

Enum"direct_expense""vendor_payment""vendor_prepayment""customer_refund"
Example: "vendor_payment"
source_record_idinteger(Source Record Id)required

ID of the source record (e.g., the VendorPayment ID)

Example: 789
source_record_numberinteger(Source Record Number)required

Number of the source record (e.g., vendor payment number)

Example: 1001
check_numberstring(Check Number)required

The check number printed on the physical check

Example: "10542"
company_idinteger(Company Id)required

ID of the company issuing the check

Example: 456
company_namestring(Company Name)required

Name of the company issuing the check

Example: "Acme Corporation"
memostring(Memo)required

Memo or description for the check

Example: "Payment for Invoice #1234"
amountAmount (number) or Amount (string)(Amount)required

Amount of the check

Example: "1500.00"
Any of:

Amount of the check

number(Amount)
currency_iso_4217_codestring(SystemCurrencies)required

ISO 4217 currency code for the check amount

Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Example: "USD"
account_numberinteger(Account Number)required

Number of the bank account the check is drawn from

Example: 321
account_namestring(Account Name)required

Name of the bank account the check is drawn from

Example: "Operating Account"
payee_namestring or null(Payee Name)

Name of the payee (vendor or customer receiving the check)

Example: "ABC Suppliers Inc."
customer_idinteger or null(Customer Id)

ID of the customer if this is a customer refund check

Example: 567
customer_namestring or null(Customer Name)

Name of the customer if this is a customer refund check

Example: "John Smith"
vendor_idinteger or null(Vendor Id)

ID of the vendor if this is a vendor payment check

Example: 890
vendor_namestring or null(Vendor Name)

Name of the vendor if this is a vendor payment check

Example: "ABC Suppliers Inc."
record_statusstring(Record Status)required

Status of the paper check: 'not_printed' (queued), 'printed', or 'archived'

Enum"printed""not_printed""archived"
Example: "printed"
Response
application/json
{ "id": 12345, "created_at": "2024-01-15", "transaction_date": "2024-01-15", "source_record_type": "direct_expense", "source_record_id": 789, "source_record_number": 1001, "check_number": "10542", "company_id": 456, "company_name": "Acme Corporation", "memo": "Payment for Invoice #1234", "amount": "1500.00", "currency_iso_4217_code": "AED", "account_number": 321, "account_name": "Operating Account", "payee_name": "ABC Suppliers Inc.", "customer_id": 567, "customer_name": "John Smith", "vendor_id": 890, "vendor_name": "ABC Suppliers Inc.", "record_status": "printed" }

Request

Archive a paper check by setting its status to ARCHIVED.

Archiving a paper check removes it from active workflows without deleting it. This allows you to:

  • Remove a check from the print queue
  • Create a new check for the same transaction
  • Maintain audit history

Note: Archived checks can still be retrieved via the list and get endpoints by filtering with record_status=archived.

Path
paper_check_idinteger(Paper Check Id)required
curl -i -X DELETE \
  'https://api.dualentry.io/public/v1/paper-checks/{paper_check_id}/'

Responses

OK

Bodyapplication/json
idinteger(Id)required

Unique identifier for the paper check

Example: 12345
created_atstring(date-time)(Created At)required

Date when the paper check was created (returned as date only)

Example: "2024-01-15"
transaction_datestring(date)(Transaction Date)required

Date of the underlying transaction

Example: "2024-01-15"
source_record_typestring(PaperCheckSourceRecordType)required

Type of the source record (e.g., 'direct_expense', 'vendor_payment', 'customer_refund')

Enum"direct_expense""vendor_payment""vendor_prepayment""customer_refund"
Example: "vendor_payment"
source_record_idinteger(Source Record Id)required

ID of the source record (e.g., the VendorPayment ID)

Example: 789
source_record_numberinteger(Source Record Number)required

Number of the source record (e.g., vendor payment number)

Example: 1001
check_numberstring(Check Number)required

The check number printed on the physical check

Example: "10542"
company_idinteger(Company Id)required

ID of the company issuing the check

Example: 456
company_namestring(Company Name)required

Name of the company issuing the check

Example: "Acme Corporation"
memostring(Memo)required

Memo or description for the check

Example: "Payment for Invoice #1234"
amountAmount (number) or Amount (string)(Amount)required

Amount of the check

Example: "1500.00"
Any of:

Amount of the check

number(Amount)
currency_iso_4217_codestring(SystemCurrencies)required

ISO 4217 currency code for the check amount

Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Example: "USD"
account_numberinteger(Account Number)required

Number of the bank account the check is drawn from

Example: 321
account_namestring(Account Name)required

Name of the bank account the check is drawn from

Example: "Operating Account"
payee_namestring or null(Payee Name)

Name of the payee (vendor or customer receiving the check)

Example: "ABC Suppliers Inc."
customer_idinteger or null(Customer Id)

ID of the customer if this is a customer refund check

Example: 567
customer_namestring or null(Customer Name)

Name of the customer if this is a customer refund check

Example: "John Smith"
vendor_idinteger or null(Vendor Id)

ID of the vendor if this is a vendor payment check

Example: 890
vendor_namestring or null(Vendor Name)

Name of the vendor if this is a vendor payment check

Example: "ABC Suppliers Inc."
record_statusstring(Record Status)required

Status of the paper check: 'not_printed' (queued), 'printed', or 'archived'

Enum"printed""not_printed""archived"
Example: "printed"
Response
application/json
{ "id": 12345, "created_at": "2024-01-15", "transaction_date": "2024-01-15", "source_record_type": "direct_expense", "source_record_id": 789, "source_record_number": 1001, "check_number": "10542", "company_id": 456, "company_name": "Acme Corporation", "memo": "Payment for Invoice #1234", "amount": "1500.00", "currency_iso_4217_code": "AED", "account_number": 321, "account_name": "Operating Account", "payee_name": "ABC Suppliers Inc.", "customer_id": 567, "customer_name": "John Smith", "vendor_id": 890, "vendor_name": "ABC Suppliers Inc.", "record_status": "printed" }