curl --request GET \
--url https://api.clemta.com/fixed-assets/{fixed_asset_id} \
--header 'X-API-Key: <api-key>'{
"success": true,
"message": "Fixed asset retrieved successfully",
"data": {
"id": "64b8f1a2e4b0c8d9f0123456",
"created_at": 1640995200,
"updated_at": 1640995200,
"title": "Office Computer",
"placed_in_service": 1640995200,
"cost": 1500,
"salvage_value": 150,
"business_use": 100,
"fixed_asset_number": 1,
"fixed_asset_number_text": "AST-1"
}
}Retrieve a specific fixed asset by its ID
curl --request GET \
--url https://api.clemta.com/fixed-assets/{fixed_asset_id} \
--header 'X-API-Key: <api-key>'{
"success": true,
"message": "Fixed asset retrieved successfully",
"data": {
"id": "64b8f1a2e4b0c8d9f0123456",
"created_at": 1640995200,
"updated_at": 1640995200,
"title": "Office Computer",
"placed_in_service": 1640995200,
"cost": 1500,
"salvage_value": 150,
"business_use": 100,
"fixed_asset_number": 1,
"fixed_asset_number_text": "AST-1"
}
}| Parameter | Type | Description |
|---|---|---|
| X-API-KEY | string | Formation API Key (required) |
| Parameter | Type | Description |
|---|---|---|
| fixed_asset_id | string | Fixed Asset ID (required) |
64b8f1a2e4b0c8d9f0123456{
"success": true,
"message": "Fixed asset retrieved successfully",
"data": {
"id": "64b8f1a2e4b0c8d9f0123456",
"title": "Office Computer",
"placed_in_service": 1640995200,
"cost": 1500.0,
"salvage_value": 150.0,
"business_use": 100.0,
"fixed_asset_number": 1,
"fixed_asset_number_text": "AST-1",
"created_at": 1640995200,
"updated_at": 1640995200
}
}
| Parameter | Type | Description |
|---|---|---|
| success | boolean | Indicates if the operation was successful |
| message | string | Additional information about the operation |
| data | object | Response data for successful requests |
| data.id | string | Unique identifier for the fixed asset |
| data.title | string | Title/name of the fixed asset |
| data.placed_in_service | integer | Timestamp when asset was placed in service |
| data.cost | number | Original cost of the fixed asset |
| data.salvage_value | number | Estimated salvage value of the asset |
| data.business_use | number | Percentage of business use (0-100) |
| data.fixed_asset_number | integer | Auto-generated fixed asset number |
| data.fixed_asset_number_text | string | Formatted fixed asset number text |
| data.created_at | integer | Creation timestamp |
| data.updated_at | integer | Last update timestamp |
{
"success": false,
"message": "Invalid request",
"error": {
"code": "INVALID_REQUEST",
"details": "Invalid fixed asset ID format"
}
}
{
"success": false,
"message": "API key is required",
"error": {
"code": "API_KEY_REQUIRED",
"details": ""
}
}
{
"success": false,
"message": "Fixed asset not found",
"error": {
"code": "FIXED_ASSET_NOT_FOUND",
"details": ""
}
}
{
"success": false,
"message": "Internal server error",
"error": {
"code": "INTERNAL_ERROR",
"details": "An unexpected error occurred."
}
}
Formation API key for authentication.
Fixed Asset ID
Fixed asset retrieved successfully
true
"Fixed asset retrieved successfully"
Show child attributes
{
"id": "64b8f1a2e4b0c8d9f0123456",
"created_at": 1640995200,
"updated_at": 1640995200,
"title": "Office Computer",
"placed_in_service": 1640995200,
"cost": 1500,
"salvage_value": 150,
"business_use": 100,
"fixed_asset_number": 1,
"fixed_asset_number_text": "AST-1"
}