Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
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/
- Mock serverhttps://docs.dualentry.com/_mock/resources/public/v1/items/
- Production environmenthttps://api.dualentry.com/public/v1/items/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/items/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.dualentry.com/_mock/resources/public/v1/items/ \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"is_active": true,
"sku": "string",
"description": "",
"item_type": "good",
"expense_account_id": 0,
"income_account_id": 0,
"deferral_account_id": 0,
"asset_account_id": 0
}'Response
application/json
{ "id": 0, "name": "string", "sku": "string", "description": "string", "item_type": "good", "is_active": true, "expense_account_id": 0, "income_account_id": 0, "deferral_account_id": 0, "asset_account_id": 0 }
- Mock serverhttps://docs.dualentry.com/_mock/resources/public/v1/items/{item_id}/
- Production environmenthttps://api.dualentry.com/public/v1/items/{item_id}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/items/{item_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/items/{item_id}/'Response
application/json
{ "id": 0, "name": "string", "sku": "string", "description": "string", "item_type": "good", "is_active": true, "expense_account_id": 0, "income_account_id": 0, "deferral_account_id": 0, "asset_account_id": 0 }
- Mock serverhttps://docs.dualentry.com/_mock/resources/public/v1/items/{item_id}/
- Production environmenthttps://api.dualentry.com/public/v1/items/{item_id}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/items/{item_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/items/{item_id}/' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"is_active": true,
"sku": "string",
"description": "",
"item_type": "good",
"expense_account_id": 0,
"income_account_id": 0,
"deferral_account_id": 0,
"asset_account_id": 0
}'Response
application/json
{ "id": 0, "name": "string", "sku": "string", "description": "string", "item_type": "good", "is_active": true, "expense_account_id": 0, "income_account_id": 0, "deferral_account_id": 0, "asset_account_id": 0 }