Fixed Assets API
The Fixed Assets API allows partners to programmatically manage fixed assets in the accounting system. This API is designed for partners who want to integrate Clemta’s fixed asset management services into their own platforms.Authentication
See Authentication for how to authenticate requests.Rate Limiting
The Fixed Assets API is subject to rate limiting to ensure fair usage and system stability. Please refer to our Rate Limiting documentation for more details.Available Endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST | /fixed-assets | Create a new fixed asset |
| GET | /fixed-assets | Retrieve a list of fixed assets with filtering |
| GET | /fixed-assets/:fixed_asset_id | Retrieve a specific fixed asset by ID |
| PATCH | /fixed-assets/:fixed_asset_id | Update an existing fixed asset |
| DELETE | /fixed-assets/:fixed_asset_id | Delete a fixed asset |
Fixed Asset Properties
Fixed assets have the following key properties:| Property | Type | Description |
|---|---|---|
| title | string | Title/name of the fixed asset |
| placed_in_service | integer | Timestamp when the asset was placed in service |
| cost | number | Original cost of the fixed asset |
| salvage_value | number | Estimated salvage value of the asset |
| business_use | number | Percentage of business use (0-100) |
| company_id | string | Company ID that owns the asset |
Error Codes
The Fixed Assets API uses the same error codes as other Clemta APIs:| Code | Description |
|---|---|
| API_KEY_REQUIRED | API key is missing from request |
| INVALID_API_KEY | Provided API key is invalid |
| ACCESS_DENIED | API key does not have access to this resource |
| RATE_LIMIT_EXCEEDED | Rate limit exceeded |
| INVALID_REQUEST | Request data is invalid |
| VALIDATION_FAILED | Request validation failed |
| COMPANY_NOT_FOUND | Specified company not found |
| INTERNAL_ERROR | Internal server error |