Skip to main content
GET
Get Fixed Assets

List Fixed Assets

This endpoint allows you to retrieve a list of fixed assets for a company with optional filtering and pagination.

Headers

Query Parameters

Parameter Examples

  • Basic request: GET /fixed-assets?company_id=64b8f1a2e4b0c8d9f0123456
  • With pagination: GET /fixed-assets?company_id=64b8f1a2e4b0c8d9f0123456&skip=0&limit=10
  • With search: GET /fixed-assets?company_id=64b8f1a2e4b0c8d9f0123456&search=computer
  • With sorting: GET /fixed-assets?company_id=64b8f1a2e4b0c8d9f0123456&sort=created_at&order=desc
  • With cost filter: GET /fixed-assets?company_id=64b8f1a2e4b0c8d9f0123456&cost=cost_value&cost_value=1000&end_cost_value=2000

Response

Response Parameters

Fixed Asset Object Parameters

Error Responses

Invalid Request (400)

Unauthorized (401)

Company Not Found (404)

Internal Server Error (500)

Notes

  • The company_id parameter is required for all requests
  • Pagination parameters (skip and limit) are optional but recommended for large datasets
  • Search functionality works across title and description fields
  • Timestamp filters should be provided in Unix timestamp format
  • Cost and salvage value filters support range queries using _value and end_ parameters

Authorizations

X-API-Key
string
header
required

Formation API key for authentication.

Query Parameters

company_id
string
required

Company ID

skip
string

Number of records to skip

limit
string

Number of records to return

Search term

sort
string

Sort field

order
enum<string>

Sort order (asc/desc)

Available options:
asc,
desc
fixed_asset_number
string

Fixed asset number filter

fixed_asset_number_value
string

Fixed asset number value

title
string

Title filter

title_value
string

Title value

placed_in_service
string

Placed in service filter

placed_in_service_value
string

Placed in service value (timestamp)

end_placed_in_service_value
string

End placed in service value (timestamp)

cost
string

Cost filter

cost_value
string

Cost value

end_cost_value
string

End cost value

salvage_value
string

Salvage value filter

salvage_value_value
string

Salvage value

end_salvage_value
string

End salvage value

business_use
string

Business use filter

business_use_value
string

Business use value

end_business_use_value
string

End business use value

created_at
string

Created at filter

created_at_value
string

Created at value (timestamp)

end_date
string

End date value (timestamp)

Response

Fixed assets retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Fixed assets retrieved successfully"

data
object