---
title: "Update a piece of equipment."
method: PUT
path: "/api/equipment/{id}"
tags: ["Equipment"]
---

# Update a piece of equipment.

`PUT /api/equipment/{id}`

## Path parameters

- `id` string, required

## Request body

- EquipmentUpdateDto — Details of a piece of equipment to be updated. This is a full replacement: any field omitted is treated as cleared.
  - `name` string, required — Identifying name. Must be unique.
  - `description` string, required — Description. Required.
  - `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 — 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 — Indicates if this equipment can support multiple operations simultaneously.
  - `status` 'good' | 'poor' | 'bad' | 'outOfService' — Equipment status
  - `notes` string, nullable — Notes associated to the equipment.

## Response `200`

The updated equipment

- EquipmentDto — Equipment definition.
  - `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

## Other responses

- `400` — Validation issues with input
- `404` — Equipment did not exist

---

[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)
