Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
Journal Entries
DualEntry Public API
Health
Accounts
Items
Classifications
Classifications Lines
Companies
Recurring Journal Entries
Invoices
Sales Orders
Recurring Invoices
Customers
Customer Payments
Customer Prepayments
Customer Prepayment Applications
Customer Deposits
Customer Refunds
Customer Credits
Cash Sales
Bills
Recurring Bills
Purchase Orders
Vendors
Vendor Payments
Vendor Credits
Vendor Refunds
Paper Checks
DualEntry Public API (1.0.0)
Download OpenAPI description
Languages
Servers
Production environment
https://api.dualentry.io/
Development environment (for testing)
https://api-dev.dualentry.io/
- Production environmenthttps://api.dualentry.io/public/v1/journal-entries/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/journal-entries/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/journal-entries/?search=string&company_id=0&customer_id=0&vendor_id=0&number=0&start_date=2019-08-24&end_date=2019-08-24&record_status=draft&needs_my_approval=true&approval_status=string&limit=100&offset=0'OK
Any of:
number(Debit)
Any of:
number(Credit)
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Posting date (GL date) - the date when the transaction is recorded in the general ledger
Transaction date (inception date) - the date when the transaction actually occurred
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Any of:
number(Exchange Rate)
Response
application/json
{ "items": [ { … } ], "count": 0 }
Bodyapplication/jsonrequired
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Any of:
number(Exchange Rate)
- Production environmenthttps://api.dualentry.io/public/v1/journal-entries/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/journal-entries/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.dualentry.io/public/v1/journal-entries/ \
-H 'Content-Type: application/json' \
-d '{
"date": "2019-08-24",
"transaction_date": "2019-08-24",
"items": [
{
"id": 0,
"account_number": 0,
"debit": 0,
"credit": 0,
"position": 0,
"memo": "string",
"classifications": [],
"currency": "AED"
}
],
"company_id": 0,
"memo": "string",
"reversal_date": "2019-08-24",
"attachments": [],
"currency_iso_4217_code": "AED",
"exchange_rate": 0,
"record_status": "posted"
}'OK
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Posting date (GL date) - the date when the transaction is recorded in the general ledger
Transaction date (inception date) - the date when the transaction actually occurred
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Any of:
number(Exchange Rate)
Response
application/json
{ "attachments": [], "reversal_items": [ { … } ], "items": [ { … } ], "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" }, "internal_id": 0, "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "memo": "string", "date": "2019-08-24", "transaction_date": "2019-08-24", "currency_iso_4217_code": "AED", "amount": 0, "exchange_rate": 0, "record_status": "draft" }
- Production environmenthttps://api.dualentry.io/public/v1/journal-entries/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/journal-entries/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/journal-entries/{record_number}/?search=string&company_id=0&customer_id=0&vendor_id=0&number=0&start_date=2019-08-24&end_date=2019-08-24&record_status=draft&needs_my_approval=true&approval_status=string'OK
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Posting date (GL date) - the date when the transaction is recorded in the general ledger
Transaction date (inception date) - the date when the transaction actually occurred
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Any of:
number(Exchange Rate)
Response
application/json
{ "attachments": [], "reversal_items": [ { … } ], "items": [ { … } ], "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" }, "internal_id": 0, "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "memo": "string", "date": "2019-08-24", "transaction_date": "2019-08-24", "currency_iso_4217_code": "AED", "amount": 0, "exchange_rate": 0, "record_status": "draft" }