---
title: "Find equipment based on search parameters."
method: POST
path: "/api/equipment/list"
tags: ["Equipment"]
---

# Find equipment based on search parameters.

`POST /api/equipment/list`

## Query parameters

- `Sort.Field` string
- `Sort.Dir` 'ascending' | 'descending' — Specify sorting direction.
- `Skip` integer
- `Take` integer

## Request body

- EquipmentRequestFindParameters — Parameters used for searching/finding equipment.
  - `ids` string[], nullable — Filter equipment based on matching ids.
  - `name` string, nullable — Filter equipment based on their name.

## Response `200`

List of equipment matching the filters

- EquipmentDto[]
  - `id` string, required — Unique id associated to this entity.
  - `name` string, required — Identifying name. Must be unique.
  - `description` string, nullable — Description.
  - `workCenterId` string, nullable — WorkCenter identifier. Please reference /api/work-centers endpoint.
  - `manufacturer` string, nullable — Manufacturer.
  - `modelNumber` string, nullable — Model number.
  - `serialNumber` string, nullable — Serial number.
  - `canRunUnattended` boolean, nullable — Indicates if this equipment can be run unattended. This allows the portion of an operation that utilizes this equipment to be scheduled outside of a shift.
  - `unlimitedCapacity` boolean, nullable — Indicates if this equipment can support multiple operations simultaneously.
  - `status` 'good' | 'poor' | 'bad' | 'outOfService' — Equipment status
  - `notes` string, nullable — Notes associated to the equipment.
  - `deleted` boolean — Indicates whether this equipment has been deleted

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
