Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
- Create VendorCredit record
DualEntry Public API (1.0.0)
- Production environmenthttps://api.dualentry.io/public/v1/vendor-credits/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/vendor-credits/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/vendor-credits/?search=string&company_id=0&number=0&vendor_id=0&start_date=2019-08-24&end_date=2019-08-24&transaction_currency=AED&record_status=draft&bill_number=0&limit=100&offset=0'OK
Posting date (GL date) - the date when the transaction is recorded in the general ledger
Transaction date (inception date) - the date when the transaction actually occurred
Total transaction amount
Total transaction amount
Amount that was already applied to Bills through Vendor Refunds or Vendor Prepayment Applications
Amount that was already applied to Bills through Vendor Refunds or Vendor Prepayment Applications
Amount that can be applied to Bills through Vendor Refunds or Vendor Prepayment Applications
Amount that can be applied to Bills through Vendor Refunds or Vendor Prepayment Applications
{ "items": [ { … } ], "count": 0 }
- Production environmenthttps://api.dualentry.io/public/v1/vendor-credits/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/vendor-credits/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.dualentry.io/public/v1/vendor-credits/ \
-H 'Content-Type: application/json' \
-d '{
"custom_fields": [
{}
],
"date": "2019-08-24",
"transaction_date": "2019-08-24",
"bill_number": 0,
"direct_expense_number": 0,
"vendor_id": 0,
"company_id": 0,
"currency_iso_4217_code": "AED",
"memo": "",
"exchange_rate": 0,
"items": [],
"expenses": [],
"attachments": [],
"record_status": "posted"
}'OK
Posting date (GL date) - the date when the transaction is recorded in the general ledger
Transaction date (inception date) - the date when the transaction actually occurred
Total transaction amount
Total transaction amount
Amount that was already applied to Bills through Vendor Refunds or Vendor Prepayment Applications
Amount that was already applied to Bills through Vendor Refunds or Vendor Prepayment Applications
Amount that can be applied to Bills through Vendor Refunds or Vendor Prepayment Applications
Amount that can be applied to Bills through Vendor Refunds or Vendor Prepayment Applications
{ "classifications": [], "transaction_ids": [ 0 ], "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, "bill_number": 0, "direct_expense_number": 0, "date": "2019-08-24", "transaction_date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "vendor_id": 0, "vendor_name": "string", "currency_iso_4217_code": "string", "exchange_rate": 0, "memo": "string", "items": [ { … } ], "expenses": [ { … } ], "amount": 0, "used_amount": 0, "remaining_amount": 0, "attachments": [], "record_status": "draft" }
- Production environmenthttps://api.dualentry.io/public/v1/vendor-credits/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.io/public/v1/vendor-credits/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.io/public/v1/vendor-credits/{record_number}/?search=string&company_id=0&number=0&vendor_id=0&start_date=2019-08-24&end_date=2019-08-24&transaction_currency=AED&record_status=draft&bill_number=0'OK
Posting date (GL date) - the date when the transaction is recorded in the general ledger
Transaction date (inception date) - the date when the transaction actually occurred
Total transaction amount
Total transaction amount
Amount that was already applied to Bills through Vendor Refunds or Vendor Prepayment Applications
Amount that was already applied to Bills through Vendor Refunds or Vendor Prepayment Applications
Amount that can be applied to Bills through Vendor Refunds or Vendor Prepayment Applications
Amount that can be applied to Bills through Vendor Refunds or Vendor Prepayment Applications
{ "classifications": [], "transaction_ids": [ 0 ], "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, "bill_number": 0, "direct_expense_number": 0, "date": "2019-08-24", "transaction_date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "vendor_id": 0, "vendor_name": "string", "currency_iso_4217_code": "string", "exchange_rate": 0, "memo": "string", "items": [ { … } ], "expenses": [ { … } ], "amount": 0, "used_amount": 0, "remaining_amount": 0, "attachments": [], "record_status": "draft" }