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
Production environment
https://api.dualentry.io/
Development environment (for testing)
https://api-dev.dualentry.io/
- Production environmenthttps://api.dualentry.io/public/v1/vendors/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/vendors/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.dualentry.io/public/v1/vendors/ \
-H 'Content-Type: application/json' \
-d '{
"is_active": true,
"vendor_type": "individual",
"name": "string",
"email": "string",
"phone": "string",
"website": "string",
"single_address": "",
"country": "",
"is_1099_eligible": false,
"address": {
"street": "string",
"city": "string",
"state": "string",
"postal_code": "string",
"country": "",
"second_line": ""
},
"tin": "",
"tin_type": "ein",
"attachments": [],
"record_status": "posted",
"term_id": 0
}'Response
application/json
{ "term_id": 0, "term_name": "string", "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": { "street": "string", "city": "string", "state": "string", "postal_code": "string", "country": "", "second_line": "" }, "company_id": 0, "company_name": "string", "attachments": [], "single_address": "string", "country": "st", "name": "string", "website": "string", "email": "string", "vendor_type": "company", "is_active": true, "phone": "string", "is_1099_eligible": false, "tin": "string", "tin_type": "", "record_status": "posted" }
- Production environmenthttps://api.dualentry.io/public/v1/vendors/{vendor_id}/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/vendors/{vendor_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/vendors/{vendor_id}/'Response
application/json
{ "term_id": 0, "term_name": "string", "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": { "street": "string", "city": "string", "state": "string", "postal_code": "string", "country": "", "second_line": "" }, "company_id": 0, "company_name": "string", "attachments": [], "single_address": "string", "country": "st", "name": "string", "website": "string", "email": "string", "vendor_type": "company", "is_active": true, "phone": "string", "is_1099_eligible": false, "tin": "string", "tin_type": "", "record_status": "posted" }
- Production environmenthttps://api.dualentry.io/public/v1/vendors/{vendor_id}/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/vendors/{vendor_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.dualentry.io/public/v1/vendors/{vendor_id}/' \
-H 'Content-Type: application/json' \
-d '{
"is_active": true,
"vendor_type": "individual",
"name": "string",
"email": "string",
"phone": "string",
"website": "string",
"single_address": "",
"country": "",
"is_1099_eligible": false,
"address": {
"street": "string",
"city": "string",
"state": "string",
"postal_code": "string",
"country": "",
"second_line": ""
},
"tin": "",
"tin_type": "ein",
"attachments": [],
"record_status": "posted",
"term_id": 0
}'Response
application/json
{ "term_id": 0, "term_name": "string", "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": { "street": "string", "city": "string", "state": "string", "postal_code": "string", "country": "", "second_line": "" }, "company_id": 0, "company_name": "string", "attachments": [], "single_address": "string", "country": "st", "name": "string", "website": "string", "email": "string", "vendor_type": "company", "is_active": true, "phone": "string", "is_1099_eligible": false, "tin": "string", "tin_type": "", "record_status": "posted" }