Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
API References
//
List records inbox
DualEntry Public API (1.0.0)
Download OpenAPI description
Languages
Servers
Production environment
https://api.dualentry.com/
Development environment (for testing)
https://api-dev.dualentry.com/
- Production environmenthttps://api.dualentry.com/public/v1/inbox/transactions/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/inbox/transactions/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.com/public/v1/inbox/transactions/?search=string&transaction_type=string&approval_status=string&company_id=0&start_date=2019-08-24&end_date=2019-08-24&customer_id=0&record_id=0&transaction_id=0&limit=100&offset=0'Response
application/json
{ "items": [ { … } ], "count": 0 }
- Production environmenthttps://api.dualentry.com/public/v1/inbox/records/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/inbox/records/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.com/public/v1/inbox/records/?search=string&record_type=string&approval_status=string&record_id=0&limit=100&offset=0'Response
application/json
{ "items": [ { … } ], "count": 0 }
- Production environmenthttps://api.dualentry.com/public/v1/inbox/transactions/{record_id}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/inbox/transactions/{record_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.com/public/v1/inbox/transactions/{record_id}/?transaction_type=string'Response
application/json
{ "transaction_type": "string", "number": "string", "date": "2019-08-24", "customer_vendor": "string", "company": "string", "company_id": 0, "memo": "string", "amount": 0, "approval_status": "string", "workflow_id": 0, "record_id": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "approval_info": { "workflow_name": "string", "workflow_version": 0, "step_name": "string", "current_substep": 0, "substeps": [ … ] } }