Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
API References
//
Get roles for workflow co...
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/workflows/actions/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/workflows/actions/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.com/public/v1/workflows/actions/?workflow_execution_state_id=0&record_type=string&record_id=0&action_type=string&approver_id=0&start_date=2019-08-24T14%3A15%3A22Z&end_date=2019-08-24T14%3A15%3A22Z&limit=100&offset=0'Response
application/json
{ "items": [ { … } ], "count": 0 }
- Production environmenthttps://api.dualentry.com/public/v1/workflows/roles/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/workflows/roles/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.dualentry.com/public/v1/workflows/roles/Response
application/json
[ { "id": 0, "name": "string", "descriptive_name": "string" } ]
- Production environmenthttps://api.dualentry.com/public/v1/workflows/{workflow_id}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/workflows/{workflow_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.com/public/v1/workflows/{workflow_id}/'OK
Supported record types for workflows.
Enum"invoice""bill""journal_entry""bank_transfer""purchase_order""sales_order""intercompany_journal_entry""vendor""customer"
Comparison operators for workflow conditions.
Enum"eq""neq""gt""lt""gte""lte""contains""not_contains""starts_with""ends_with"
Response
application/json
{ "id": 0, "record_type": "invoice", "name": "string", "is_active": true, "description": "string", "version": 0, "priority": 0, "company_ids": [ 0 ], "applies_to_all_companies": true, "allow_self_approval": true, "steps": [ { … } ], "pending_approval_count": 0, "roles": { "property1": "string", "property2": "string" } }