Monitor API availability and service status. Use these endpoints to verify connectivity and check if the API is operational.
API References
//
Get Fixed Asset
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)
Any of:
number(Salvage Value)
Enum"straight_line""straight_line_prorate_even""declining_balance""double_declining""macrs_gds""macrs_ads""custom"
Enum"mid_month""half_month""full_month""mid_quarter""half_year"
acceleration_factorAcceleration Factor (number) or Acceleration Factor (string)(Acceleration Factor)
Default "1.0"
Any of:
number(Acceleration Factor)
Default "1.0"
- Production environmenthttps://api.dualentry.com/public/v1/fixed-assets/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/fixed-assets/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.dualentry.com/public/v1/fixed-assets/ \
-H 'Content-Type: application/json' \
-d '{
"company_id": 0,
"name": "string",
"serial_number": "",
"currency_iso_4217_code": "AED",
"exchange_rate": 0,
"purchase_date": "2019-08-24",
"memo": "",
"cost": 0,
"status": "active",
"asset_account_number": 0,
"expense_account_number": 0,
"accumulation_account_number": 0,
"useful_life": 0,
"salvage_value": 0,
"depreciation_method": "straight_line",
"depreciation_start_date": "2019-08-24",
"convention": "mid_month",
"acceleration_factor": "1.0",
"accumulated_beginning_balance": "0",
"accumulated_through": "2019-08-24",
"record_status": "posted",
"address": {
"street": "string",
"city": "string",
"state": "",
"postal_code": "string",
"country": "",
"second_line": "",
"name": "string"
},
"classifications": []
}'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, "company_id": 0, "company_name": "string", "name": "string", "serial_number": "string", "currency_iso_4217_code": "AED", "exchange_rate": "string", "purchase_date": "2019-08-24", "memo": "string", "cost": "string", "status": "active", "record_status": "draft", "asset_account_number": 0, "expense_account_number": 0, "accumulation_account_number": 0, "useful_life": 0, "salvage_value": "string", "depreciation_method": "straight_line", "depreciation_start_date": "2019-08-24", "convention": "mid_month", "accumulated_beginning_balance": "string", "accumulated_through": "2019-08-24", "classifications": [] }
- Production environmenthttps://api.dualentry.com/public/v1/fixed-assets/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/fixed-assets/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.dualentry.com/public/v1/fixed-assets/{record_number}/'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, "company_id": 0, "company_name": "string", "name": "string", "serial_number": "string", "currency_iso_4217_code": "AED", "exchange_rate": "string", "purchase_date": "2019-08-24", "memo": "string", "cost": "string", "status": "active", "record_status": "draft", "asset_account_number": 0, "expense_account_number": 0, "accumulation_account_number": 0, "useful_life": 0, "salvage_value": "string", "depreciation_method": "straight_line", "depreciation_start_date": "2019-08-24", "convention": "mid_month", "accumulated_beginning_balance": "string", "accumulated_through": "2019-08-24", "classifications": [] }
Bodyapplication/jsonrequired
Enum"AED""AFN""ALL""AMD""ANG""AOA""ARS""AUD""AWG""AZN"
Any of:
number(Exchange Rate)
Any of:
number(Salvage Value)
Enum"straight_line""straight_line_prorate_even""declining_balance""double_declining""macrs_gds""macrs_ads""custom"
Enum"mid_month""half_month""full_month""mid_quarter""half_year"
acceleration_factorAcceleration Factor (number) or Acceleration Factor (string)(Acceleration Factor)
Default "1.0"
Any of:
number(Acceleration Factor)
Default "1.0"
- Production environmenthttps://api.dualentry.com/public/v1/fixed-assets/{record_number}/
- Development environment (for testing)https://api-dev.dualentry.com/public/v1/fixed-assets/{record_number}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.dualentry.com/public/v1/fixed-assets/{record_number}/' \
-H 'Content-Type: application/json' \
-d '{
"company_id": 0,
"name": "string",
"serial_number": "",
"currency_iso_4217_code": "AED",
"exchange_rate": 0,
"purchase_date": "2019-08-24",
"memo": "",
"cost": 0,
"status": "active",
"asset_account_number": 0,
"expense_account_number": 0,
"accumulation_account_number": 0,
"useful_life": 0,
"salvage_value": 0,
"depreciation_method": "straight_line",
"depreciation_start_date": "2019-08-24",
"convention": "mid_month",
"acceleration_factor": "1.0",
"accumulated_beginning_balance": "0",
"accumulated_through": "2019-08-24",
"record_status": "posted",
"address": {
"street": "string",
"city": "string",
"state": "",
"postal_code": "string",
"country": "",
"second_line": "",
"name": "string"
},
"classifications": []
}'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, "company_id": 0, "company_name": "string", "name": "string", "serial_number": "string", "currency_iso_4217_code": "AED", "exchange_rate": "string", "purchase_date": "2019-08-24", "memo": "string", "cost": "string", "status": "active", "record_status": "draft", "asset_account_number": 0, "expense_account_number": 0, "accumulation_account_number": 0, "useful_life": 0, "salvage_value": "string", "depreciation_method": "straight_line", "depreciation_start_date": "2019-08-24", "convention": "mid_month", "accumulated_beginning_balance": "string", "accumulated_through": "2019-08-24", "classifications": [] }