Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
- Create PurchaseOrder record attachments
DualEntry Public API (1.0.0)
Quantity of the item
Quantity of the item
Rate of the item
Rate of the item
Classifications of the item
- Production environmenthttps://api.dualentry.io/public/v1/purchase-orders/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/purchase-orders/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.dualentry.io/public/v1/purchase-orders/{record_number}/' \
-H 'Content-Type: application/json' \
-d '{
"date": "2019-08-24",
"company_id": 0,
"vendor_id": 0,
"currency_iso_4217_code": "AED",
"exchange_rate": 0,
"memo": "string",
"items": [
{
"id": 0,
"position": 0,
"item_id": 0,
"memo": "string",
"quantity": 0,
"rate": 0,
"classifications": [
{
"id": 0,
"name": "string",
"line_id": 0,
"line_name": "string",
"parent_classification_id": 0,
"parent_classification_line_id": 0
}
]
}
],
"attachments": [],
"record_status": "posted",
"term_id": 0,
"reference_number": ""
}'OK
Total quantity of items that were already billed
Total quantity of items that were already billed
Total quantity of items yet to be billed
Total quantity of items yet to be billed
Total amount of ordered items
Total amount of ordered items
Classifications of the item
Quantity ordered
Quantity ordered
Rate per unit
Rate per unit
Quantity of items that already have corresponding Bill
Quantity of items that already have corresponding Bill
Quantity of items yet to be billed
Quantity of items yet to be billed
{ "attachments": [], "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" }, "internal_id": 0, "number": 0, "date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "vendor_id": 0, "vendor_name": "string", "currency_iso_4217_code": "AED", "exchange_rate": 0, "billed_total": 0, "due_total": 0, "amount": 0, "memo": "string", "items": [ { … } ], "record_status": "draft", "billed_status": "billed", "reference_number": "" }
- Production environmenthttps://api.dualentry.io/public/v1/purchase-orders/{record_number}/attachments/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/purchase-orders/{record_number}/attachments/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.dualentry.io/public/v1/purchase-orders/{record_number}/attachments/' \
-H 'Content-Type: multipart/form-data' \
-F files=stringOK
Total quantity of items that were already billed
Total quantity of items that were already billed
Total quantity of items yet to be billed
Total quantity of items yet to be billed
Total amount of ordered items
Total amount of ordered items
Classifications of the item
Quantity ordered
Quantity ordered
Rate per unit
Rate per unit
Quantity of items that already have corresponding Bill
Quantity of items that already have corresponding Bill
Quantity of items yet to be billed
Quantity of items yet to be billed
{ "attachments": [], "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" }, "internal_id": 0, "number": 0, "date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "vendor_id": 0, "vendor_name": "string", "currency_iso_4217_code": "AED", "exchange_rate": 0, "billed_total": 0, "due_total": 0, "amount": 0, "memo": "string", "items": [ { … } ], "record_status": "draft", "billed_status": "billed", "reference_number": "" }