---
title: "Assets"
method: GET
path: "/v2/assets"
tags: ["Routes", "Assets"]
---

# Assets

`GET /v2/assets`

This request returns a list of Assets with top level information such as name, last edited, etc.

**Note:** this endpoint supports pagination. Please refer to the [Pagination](#pagination) section for more information.

Return data description

meta | Requests to gather more information on an Asset such as Fields for the Asset or what Tasks are assigned to the Asset
startedOn | The date when this Asset was started on. This property is used to help determine runtime which is used in MTBF.
lastEdited | A UNIX timestamp of when this Asset was last edited.
parentAssetID | The Asset that is the parent of this Asset. If the value is 0 that means this Asset does not have a parent.
locationID | The ID of the location this asset is located at.
hoursPerWeek | The number of hours this Asset runs per week. This is used to determine runtime which is used in MTBF. If the value is -1 then the Asset uses the Location's hoursPerWeek setting.
workRequestPortal | The url work requestors can use to submit problems with this Asset.
image | Array of objects that have a file name and a link you can use to download that image. All links are only valid for 15 minutes, a new call will generate a new link.
geoLocation | The location of an asset on a Map.

## Query parameters

- `assets` integer
- `name` string
- `locations` integer
- `start` integer
- `end` integer
- `cursor` integer
- `limit` integer
- `parentAssetID` integer
- `orderBy` string
- `page` integer
- `geoLocation` boolean

## Response `200`

Pagination using Page & Limit

- Asset[]
  - `assetID` integer
  - `name` string
  - `startedOn` integer
  - `lastEdited` integer
  - `parentAssetID` integer
  - `locationID` integer
  - `hoursPerWeek` integer
  - `meta` object
    - `fields` string
    - `tasks` string
  - `workRequestPortal` string, uri
  - `image` unknown[]
    - unknown

## Other responses

- `400` — The request was malformed — either invalid JSON syntax or a validation failure (missing required field, wrong type, etc.).
- `401` — No `Authorization` header was provided on the request.
- `403` — The supplied credentials are invalid, the customer account is inactive, or the credentials do not have permission to perform this action.
- `429` — The per-minute or per-hour rate limit for this credential and method has been exhausted. Inspect the `X-RateLimit-*` headers to determine when to retry.
- `500` — An unhandled server-side error. The body message is generic (`System unavailable...`) when the underlying cause is a database fault; otherwise it reflects the raised error.

---

[API](https://skmtc.net/limblecmms/apis/limble-api-v2.md) · [All operations](https://skmtc.net/limblecmms/apis/limble-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/limblecmms/limble-api-v2/revisions/20801e23f7f2/schema)
