Create a new fixed asset for a company
Parameter | Type | Description |
---|---|---|
X-API-KEY | string | Formation API Key (required) |
Parameter | Type | Required | Description |
---|---|---|---|
title | string | Yes | Title/name of the fixed asset |
placed_in_service | integer | Yes | Timestamp when the asset was placed in service |
cost | number | Yes | Original cost of the fixed asset |
salvage_value | number | Yes | Estimated salvage value of the asset |
business_use | number | Yes | Percentage of business use (0-100) |
company_id | string | Yes | Company ID that owns the asset |
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 created 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 |
placed_in_service
timestamp should be in Unix timestamp formatbusiness_use
percentage must be between 0 and 100cost
and salvage_value
should be positive numbersFormation API key for authentication.
Fixed asset created successfully
The response is of type object
.