Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
Vendor Prepayments
DualEntry Public API
Health
Accounts
Items
Classifications
Classifications Lines
Companies
Approval Policies
Inbox
Budgets
Journal Entries
Recurring Journal Entries
Bank Transfers
Invoices
Contracts
Sales Orders
Recurring Invoices
Customers
Customer Payments
Customer Prepayments
Customer Prepayment Applications
Customer Deposits
Customer Refunds
Customer Credits
Cash Sales
Bills
Recurring Bills
Purchase Orders
Direct Expenses
Vendors
Vendor Payments
Vendor Prepayment Applications
Vendor Credits
Vendor Refunds
Paper Checks
Fixed Assets
DualEntry Public API (1.0.0)
Download OpenAPI description
Languages
Servers
Production environment
https://api.dualentry.com
Development environment (for testing)
https://api-dev.dualentry.com
- Production environmenthttps://api.dualentry.com/public/v1/vendor-prepayments/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/vendor-prepayments/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.com/public/v1/vendor-prepayments/?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&recurring_record_id=0&ordering=id&limit=100&offset=0'OK
Amount that was already applied to Bills
Amount that can be applied to Bills
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Enum"draft""posted""archived"
Response
application/json
{ "items": [ { … } ], "count": 0 }
Bodyapplication/jsonrequired
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Any of:
number(Exchange Rate)
- Production environmenthttps://api.dualentry.com/public/v1/vendor-prepayments/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/vendor-prepayments/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.dualentry.com/public/v1/vendor-prepayments/ \
-H 'Content-Type: application/json' \
-d '{
"financial_transaction_to_validate_match": 0,
"date": "2019-08-24",
"transaction_date": "2019-08-24",
"custom_fields": [
{}
],
"company_id": 0,
"vendor_id": 0,
"account_number": 0,
"check_number": "string",
"amount": 0,
"currency_iso_4217_code": "AED",
"exchange_rate": 0,
"bank_or_undeposited_funds_amount": 0,
"memo": "string",
"attachments": [],
"record_status": "posted"
}'Response
application/json
{ "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "custom_fields": [], "internal_id": 0, "transaction_ids": [ 0 ], "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "vendor_id": 0, "vendor_name": "string", "account_number": 0, "date": "2019-08-24", "transaction_date": "2019-08-24", "check_number": "string", "amount": "string", "used_amount": "string", "remaining_amount": "string", "currency_iso_4217_code": "AED", "exchange_rate": "string", "bank_or_undeposited_funds_amount": "string", "memo": "string", "attachments": [], "record_status": "draft", "paper_check_status": "printed", "recurring_record_id": 0 }
- Production environmenthttps://api.dualentry.com/public/v1/vendor-prepayments/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/vendor-prepayments/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.com/public/v1/vendor-prepayments/{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&recurring_record_id=0'Response
application/json
{ "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "custom_fields": [], "internal_id": 0, "transaction_ids": [ 0 ], "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "vendor_id": 0, "vendor_name": "string", "account_number": 0, "date": "2019-08-24", "transaction_date": "2019-08-24", "check_number": "string", "amount": "string", "used_amount": "string", "remaining_amount": "string", "currency_iso_4217_code": "AED", "exchange_rate": "string", "bank_or_undeposited_funds_amount": "string", "memo": "string", "attachments": [], "record_status": "draft", "paper_check_status": "printed", "recurring_record_id": 0 }