Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
API References
//
List Classifications
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/classifications/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/classifications/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/classifications/?search=string&id=0&name=string&is_active=true&is_required=true&limit=100&offset=0'Response
application/json
{ "items": [ { … } ], "count": 0 }
Bodyapplication/jsonrequired
Items Enum"purchase_order""sales_order""cash_sale""invoice""bill""direct_expense""vendor_credit""journal_entry""intercompany_journal_entry""customer_credit"
- Production environmenthttps://api.dualentry.io/public/v1/classifications/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/classifications/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.dualentry.io/public/v1/classifications/ \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"name": "string",
"is_active": true,
"selections": [
{
"id": 0,
"name": "string",
"is_active": true,
"parent_id": 0
}
],
"required_for_records": [
"purchase_order"
],
"parent_id": 0
}'Response
application/json
{ "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" }, "id": 0, "selections": [ { … } ], "required_for_records": [ "purchase_order" ], "parent_id": 0, "parent_name": "string", "name": "string", "is_active": true }
- Production environmenthttps://api.dualentry.io/public/v1/classifications/{classification_id}/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/classifications/{classification_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/classifications/{classification_id}/'Response
application/json
{ "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" }, "id": 0, "selections": [ { … } ], "required_for_records": [ "purchase_order" ], "parent_id": 0, "parent_name": "string", "name": "string", "is_active": true }