---
title: "Asset Suggested Fields"
method: GET
path: "/v2/assets/fields/suggested"
tags: ["Routes", "Assets", "Fields"]
---

# Asset Suggested Fields

`GET /v2/assets/fields/suggested`

This request gets all possible fields an Asset can pick from when deciding which fields it should have.  

To understand this concept, let's pretend you have the following assets:  

Your first Asset (a Truck) has the fields Make, Model, and VIN.  

Your second Asset (a HVAC) has the fields Make, Model, and Serial Number.  

This would mean there are 4 suggested fields that exist:  Make, Model, VIN and Serial Number.  If I added a third new asset I could pick from any of the 4 suggested fields.

Suggested fields are the full list of possible fields that can be added to assets at that location.

## Query parameters

- `fields` integer
- `name` string
- `cursor` integer
- `limit` integer
- `locations` integer

## Response `200`

Asset Suggested Fields

- object[]
  - `fieldID` integer
  - `fieldType` string
  - `fieldName` string
  - `locationID` integer
  - `options` DropdownOption[] — Present only when fieldType is "Dropdown". Contains the list of available options for the dropdown field.
    - `name` string, required — The display name of the dropdown option.

## 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/eceb9442ed4d/schema)
