Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
API References
/- Create Customer
List Customers
Get Customer
Update Customer
Delete Customer
Create Customer
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/customers/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/customers/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/customers/?search=string&id=0&customer_type=string&name=string&email=string&website=string&address=string&country=string&state=string&phone=string&ordering=updated_at%2Cname&limit=100&offset=0'Response
application/json
{ "items": [ { … } ], "count": 0 }
- Production environmenthttps://api.dualentry.io/public/v1/customers/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/customers/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.dualentry.io/public/v1/customers/ \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"email": "string",
"address": "string",
"country": "string",
"phone": "string",
"website": "string",
"full_address": {
"street": "string",
"city": "string",
"state": "string",
"postal_code": "string",
"country": "",
"second_line": ""
}
}'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, "address": "string", "country": "string", "name": "string", "website": "string", "email": "string", "customer_type": "string", "is_active": true, "phone": "string", "record_status": "string", "is_taxable": true, "default_tax_code": "string", "tax_registration_number": "string" }
- Production environmenthttps://api.dualentry.io/public/v1/customers/{customer_id}/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/customers/{customer_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/customers/{customer_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, "address": "string", "country": "string", "name": "string", "website": "string", "email": "string", "customer_type": "string", "is_active": true, "phone": "string", "record_status": "string", "is_taxable": true, "default_tax_code": "string", "tax_registration_number": "string" }