Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
API References
/- Get VendorPrepaymentApplication record
List VendorPrepaymentApplication records
Create VendorPrepaymentApplication record
Update VendorPrepaymentApplication record
Get VendorPrepaymentAppli...
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
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-prepayment-applications/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/vendor-prepayment-applications/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.dualentry.com/public/v1/vendor-prepayment-applications/ \
-H 'Content-Type: application/json' \
-d '{
"date": "2019-08-24",
"transaction_date": "2019-08-24",
"company_id": 0,
"currency_iso_4217_code": "AED",
"exchange_rate": 0,
"vendor_prepayment_number": 0,
"vendor_credit_number": 0,
"memo": "string",
"items": [
{
"id": 0,
"bill_number": 0,
"amount": 0,
"position": 0
}
],
"attachments": [],
"record_status": "posted"
}'Response
application/json
{ "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "internal_id": 0, "transaction_ids": [ 0 ], "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "vendor_id": 0, "vendor_name": "string", "vendor_prepayment_number": 0, "vendor_credit_number": 0, "exchange_rate": "string", "memo": "string", "date": "2019-08-24", "transaction_date": "2019-08-24", "currency_iso_4217_code": "AED", "amount": "string", "items": [ { … } ], "attachments": [], "record_status": "draft" }
- Production environmenthttps://api.dualentry.com/public/v1/vendor-prepayment-applications/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/vendor-prepayment-applications/{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-prepayment-applications/{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_id=0'Response
application/json
{ "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "internal_id": 0, "transaction_ids": [ 0 ], "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "vendor_id": 0, "vendor_name": "string", "vendor_prepayment_number": 0, "vendor_credit_number": 0, "exchange_rate": "string", "memo": "string", "date": "2019-08-24", "transaction_date": "2019-08-24", "currency_iso_4217_code": "AED", "amount": "string", "items": [ { … } ], "attachments": [], "record_status": "draft" }
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-prepayment-applications/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/vendor-prepayment-applications/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.dualentry.com/public/v1/vendor-prepayment-applications/{record_number}/' \
-H 'Content-Type: application/json' \
-d '{
"date": "2019-08-24",
"transaction_date": "2019-08-24",
"company_id": 0,
"currency_iso_4217_code": "AED",
"exchange_rate": 0,
"vendor_prepayment_number": 0,
"vendor_credit_number": 0,
"memo": "string",
"items": [
{
"id": 0,
"bill_number": 0,
"amount": 0,
"position": 0
}
],
"attachments": [],
"record_status": "posted"
}'Response
application/json
{ "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "internal_id": 0, "transaction_ids": [ 0 ], "number": 0, "company_id": 0, "company_name": "string", "company_currency": "string", "vendor_id": 0, "vendor_name": "string", "vendor_prepayment_number": 0, "vendor_credit_number": 0, "exchange_rate": "string", "memo": "string", "date": "2019-08-24", "transaction_date": "2019-08-24", "currency_iso_4217_code": "AED", "amount": "string", "items": [ { … } ], "attachments": [], "record_status": "draft" }