Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
API References
/- Get transaction inbox details
Get inbox summary
List transactions inbox
List records inbox
Get record inbox details
Get transaction inbox det...
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/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": [ … ] } }
- Production environmenthttps://api.dualentry.com/public/v1/inbox/records/{record_id}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/inbox/records/{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/records/{record_id}/?record_type=string'Response
application/json
{ "record_type": "string", "name": "string", "approval_status": "string", "approver": "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": [ … ] } }