Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
/
Get Classification
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/
Bodyapplication/jsonrequired
Items Enum"purchase_order""sales_order""cash_sale""invoice""bill""direct_expense""vendor_credit""journal_entry""intercompany_journal_entry""customer_credit"
- Mock serverhttps://docs.dualentry.com/_mock/resources/public/v1/classifications/
- Production environmenthttps://api.dualentry.com/public/v1/classifications/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/classifications/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.dualentry.com/_mock/resources/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
{ "id": 0, "selections": [ { … } ], "required_for_records": [ "purchase_order" ], "parent_id": 0, "parent_name": "string", "name": "string", "is_active": true }
- Mock serverhttps://docs.dualentry.com/_mock/resources/public/v1/classifications/{classification_id}/
- Production environmenthttps://api.dualentry.com/public/v1/classifications/{classification_id}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/classifications/{classification_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dualentry.com/_mock/resources/public/v1/classifications/{classification_id}/'Response
application/json
{ "id": 0, "selections": [ { … } ], "required_for_records": [ "purchase_order" ], "parent_id": 0, "parent_name": "string", "name": "string", "is_active": true }
Bodyapplication/jsonrequired
Items Enum"purchase_order""sales_order""cash_sale""invoice""bill""direct_expense""vendor_credit""journal_entry""intercompany_journal_entry""customer_credit"
- Mock serverhttps://docs.dualentry.com/_mock/resources/public/v1/classifications/{classification_id}/
- Production environmenthttps://api.dualentry.com/public/v1/classifications/{classification_id}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/classifications/{classification_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.dualentry.com/_mock/resources/public/v1/classifications/{classification_id}/' \
-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
{ "id": 0, "selections": [ { … } ], "required_for_records": [ "purchase_order" ], "parent_id": 0, "parent_name": "string", "name": "string", "is_active": true }