Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
API References
//
Update CustomerDeposit re...
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/customer-deposits/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/customer-deposits/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/customer-deposits/{record_number}/?search=string&company_id=0&number=0&customer_id=0&start_date=2019-08-24&end_date=2019-08-24&transaction_currency=AED&record_status=draft'OK
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)
Total transaction amount
Any of:
Total transaction amount
number(Amount)
Response
application/json
{ "attachments": [], "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, "transaction_id": 0, "date": "2019-08-24", "transaction_date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "account_id": 0, "currency_iso_4217_code": "AED", "exchange_rate": 0, "amount": 0, "memo": "string", "items": [ { … } ], "record_status": "draft" }
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/customer-deposits/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/customer-deposits/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.dualentry.io/public/v1/customer-deposits/{record_number}/' \
-H 'Content-Type: application/json' \
-d '{
"custom_fields": [
{}
],
"date": "2019-08-24",
"transaction_date": "2019-08-24",
"company_id": 0,
"account_number": 0,
"currency_iso_4217_code": "AED",
"exchange_rate": 0,
"memo": "",
"check_number": "",
"items": [
{
"id": 0,
"position": 0,
"cash_sale_number": 0,
"customer_payment_number": 0,
"customer_prepayment_number": 0,
"vendor_refund_number": 0,
"account_number": 0,
"customer_id": 0,
"vendor_id": 0,
"description": "",
"amount": 0
}
],
"attachments": [],
"record_status": "posted"
}'OK
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)
Total transaction amount
Any of:
Total transaction amount
number(Amount)
Response
application/json
{ "attachments": [], "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, "transaction_id": 0, "date": "2019-08-24", "transaction_date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "account_id": 0, "currency_iso_4217_code": "AED", "exchange_rate": 0, "amount": 0, "memo": "string", "items": [ { … } ], "record_status": "draft" }
- Production environmenthttps://api.dualentry.io/public/v1/customer-deposits/{record_number}/attachments/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/customer-deposits/{record_number}/attachments/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.dualentry.io/public/v1/customer-deposits/{record_number}/attachments/' \
-H 'Content-Type: multipart/form-data' \
-F files=stringOK
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)
Total transaction amount
Any of:
Total transaction amount
number(Amount)
Response
application/json
{ "attachments": [], "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, "transaction_id": 0, "date": "2019-08-24", "transaction_date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "account_id": 0, "currency_iso_4217_code": "AED", "exchange_rate": 0, "amount": 0, "memo": "string", "items": [ { … } ], "record_status": "draft" }