Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
/
Update JournalEntry recor...
DualEntry Public API (1.0.0)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.dualentry.com/_mock/resources/
Production environment
https://api.dualentry.com/
Development environment (for testing)
https://api-dev.dualentry.com/
- Mock serverhttps://docs.dualentry.com/_mock/resources/public/v1/journal-entries/{record_number}/
- Production environmenthttps://api.dualentry.com/public/v1/journal-entries/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/journal-entries/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dualentry.com/_mock/resources/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'Response
application/json
{ "attachments": [], "reversal_items": [ { … } ], "items": [ { … } ], "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "memo": "string", "date": "2019-08-24", "currency_iso_4217_code": "AED", "amount": 0, "exchange_rate": 0, "record_status": "draft" }
Bodyapplication/jsonrequired
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Any of:
number(Exchange Rate)
- Mock serverhttps://docs.dualentry.com/_mock/resources/public/v1/journal-entries/{record_number}/
- Production environmenthttps://api.dualentry.com/public/v1/journal-entries/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/journal-entries/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.dualentry.com/_mock/resources/public/v1/journal-entries/{record_number}/' \
-H 'Content-Type: application/json' \
-d '{
"items": [
{
"id": 0,
"account_number": 0,
"debit": 0,
"credit": 0,
"position": 0,
"memo": "string",
"classifications": [],
"currency": "AED"
}
],
"company_id": 0,
"memo": "string",
"date": "2019-08-24",
"reversal_date": "2019-08-24",
"attachments": [],
"currency_iso_4217_code": "AED",
"exchange_rate": 0,
"record_status": "posted"
}'Response
application/json
{ "attachments": [], "reversal_items": [ { … } ], "items": [ { … } ], "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "memo": "string", "date": "2019-08-24", "currency_iso_4217_code": "AED", "amount": 0, "exchange_rate": 0, "record_status": "draft" }
- Mock serverhttps://docs.dualentry.com/_mock/resources/public/v1/journal-entries/{record_number}/attachments/
- Production environmenthttps://api.dualentry.com/public/v1/journal-entries/{record_number}/attachments/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/journal-entries/{record_number}/attachments/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.dualentry.com/_mock/resources/public/v1/journal-entries/{record_number}/attachments/' \
-H 'Content-Type: multipart/form-data' \
-F files=stringResponse
application/json
{ "attachments": [], "reversal_items": [ { … } ], "items": [ { … } ], "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "memo": "string", "date": "2019-08-24", "currency_iso_4217_code": "AED", "amount": 0, "exchange_rate": 0, "record_status": "draft" }