curl --silent --show-error --fail-with-body --request POST \
--url 'https://api.stateset.com/api/v1/fixed-assets' \
--header "Authorization: Bearer $STATESET_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"acquisition_cost": "49.00",
"acquisition_date": "2026-08-31",
"asset_number": "string",
"category": "standard",
"declining_balance_rate": "string",
"depreciation_method": "string",
"description": "Two-person tent, green — replacement for damaged pole set.",
"in_service_date": "2026-08-31T14:22:05Z",
"location_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"salvage_value": "49.00",
"useful_life_months": 1
}'
{
"accumulated_depreciation": "string",
"acquisition_cost": "49.00",
"acquisition_date": "2026-08-31T14:22:05Z",
"asset_number": "string",
"book_value": "49.00",
"category": "standard",
"created_at": "2026-08-31T14:22:05Z",
"currency": "USD",
"disposal_gain_loss": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"in_service_date": "2026-08-31T14:22:05Z",
"name": "Two-Person Tent",
"salvage_value": "49.00",
"status": "pending",
"useful_life_months": 1
}
Create a fixed asset
Create a fixed asset
POST
/
api
/
v1
/
fixed-assets
curl --silent --show-error --fail-with-body --request POST \
--url 'https://api.stateset.com/api/v1/fixed-assets' \
--header "Authorization: Bearer $STATESET_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"acquisition_cost": "49.00",
"acquisition_date": "2026-08-31",
"asset_number": "string",
"category": "standard",
"declining_balance_rate": "string",
"depreciation_method": "string",
"description": "Two-person tent, green — replacement for damaged pole set.",
"in_service_date": "2026-08-31T14:22:05Z",
"location_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"salvage_value": "49.00",
"useful_life_months": 1
}'
{
"accumulated_depreciation": "string",
"acquisition_cost": "49.00",
"acquisition_date": "2026-08-31T14:22:05Z",
"asset_number": "string",
"book_value": "49.00",
"category": "standard",
"created_at": "2026-08-31T14:22:05Z",
"currency": "USD",
"disposal_gain_loss": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"in_service_date": "2026-08-31T14:22:05Z",
"name": "Two-Person Tent",
"salvage_value": "49.00",
"status": "pending",
"useful_life_months": 1
}
Confirm your deployment before running this request. This page describes an API contract;
a published reference does not establish hosted availability. Check the dated
host report and obtain your deployment URL and credentials.
Replace the example host if your provisioned service uses a different URL.
Request body
CreateFixedAssetRequest
string
required
Decimal cost as a string.
string
required
ISO date (
YYYY-MM-DD).string,null
string
required
One of
land, building, machinery, equipment, vehicle, furniture_and_fixtures, computer_hardware, software, leasehold_improvement, other.string,null
Declining-balance rate as a decimal string (required for
declining_balance).string
required
One of
straight_line, declining_balance, units_of_production.string,null
string,null
ISO date; when supplied the asset is created in service.
string,null
string
required
string,null
Decimal salvage value as a string (default
0).integer (int32)
required
Minimum:
0.Response
FixedAssetResponse
string
required
string
required
string
required
string
required
string
required
string
required
string
required
string
required
string,null
string
required
string,null
string
required
string
required
string
required
integer (int32)
required
Minimum:
0.Status codes
| Code | Meaning |
|---|---|
201 | — |
400 | — |
Using this contract
Read the source OpenAPI document for declared schemas and alternatives. This page also includes documented corrections from the spec overlays. Example IDs and values are illustrative; replace them with records from your workspace.curl --silent --show-error --fail-with-body --request POST \
--url 'https://api.stateset.com/api/v1/fixed-assets' \
--header "Authorization: Bearer $STATESET_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"acquisition_cost": "49.00",
"acquisition_date": "2026-08-31",
"asset_number": "string",
"category": "standard",
"declining_balance_rate": "string",
"depreciation_method": "string",
"description": "Two-person tent, green — replacement for damaged pole set.",
"in_service_date": "2026-08-31T14:22:05Z",
"location_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"salvage_value": "49.00",
"useful_life_months": 1
}'
{
"accumulated_depreciation": "string",
"acquisition_cost": "49.00",
"acquisition_date": "2026-08-31T14:22:05Z",
"asset_number": "string",
"book_value": "49.00",
"category": "standard",
"created_at": "2026-08-31T14:22:05Z",
"currency": "USD",
"disposal_gain_loss": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"in_service_date": "2026-08-31T14:22:05Z",
"name": "Two-Person Tent",
"salvage_value": "49.00",
"status": "pending",
"useful_life_months": 1
}
Last modified on September 21, 2026