Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
API References
/- Get BankTransfer record
List BankTransfer records
Create BankTransfer record
Update BankTransfer record
Get BankTransfer record
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/bank-transfers/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/bank-transfers/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.dualentry.com/public/v1/bank-transfers/ \
-H 'Content-Type: application/json' \
-d '{
"date": "2019-08-24",
"transaction_date": "2019-08-24",
"company_id": 0,
"debit_bank_account_number": 0,
"credit_bank_account_number": 0,
"amount": 0,
"exchange_rate": "1.00",
"memo": "",
"record_status": "posted"
}'Response
application/json
{ "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", "transaction_date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "debit_bank_account_number": 0, "credit_bank_account_number": 0, "amount": "string", "exchange_rate": "string", "memo": "string", "record_status": "draft", "currency_iso_4217_code": [] }
- Production environmenthttps://api.dualentry.com/public/v1/bank-transfers/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/bank-transfers/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.com/public/v1/bank-transfers/{record_number}/?search=string&company_id=0&number=0&start_date=2019-08-24&end_date=2019-08-24&debit_bank_account_number=0&credit_bank_account_number=0&record_status=draft&approval_status=string'Response
application/json
{ "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", "transaction_date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "debit_bank_account_number": 0, "credit_bank_account_number": 0, "amount": "string", "exchange_rate": "string", "memo": "string", "record_status": "draft", "currency_iso_4217_code": [] }
- Production environmenthttps://api.dualentry.com/public/v1/bank-transfers/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/bank-transfers/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.dualentry.com/public/v1/bank-transfers/{record_number}/' \
-H 'Content-Type: application/json' \
-d '{
"date": "2019-08-24",
"transaction_date": "2019-08-24",
"company_id": 0,
"debit_bank_account_number": 0,
"credit_bank_account_number": 0,
"amount": 0,
"exchange_rate": "1.00",
"memo": "",
"record_status": "posted"
}'Response
application/json
{ "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", "transaction_date": "2019-08-24", "company_id": 0, "company_name": "string", "company_currency": "string", "debit_bank_account_number": 0, "credit_bank_account_number": 0, "amount": "string", "exchange_rate": "string", "memo": "string", "record_status": "draft", "currency_iso_4217_code": [] }