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

# Find operations based on search parameters.

`POST /api/operations/list`

## Query parameters

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

## Request body

- OperationRequestFindParameters — Parameters used for searching/finding operations.
  - `name` string, nullable — Filter operations based on their name.
  - `modifiedBeforeUtc` string, date-time, nullable — Filters operations modified before (exclusive) this parameter in UTC time. If no time component is passed, midnight UTC will be used.
  - `modifiedAfterUtc` string, date-time, nullable — Filters operations modified after (exclusive) this parameter in UTC time. If no time component is passed, midnight UTC will be used. Useful for polling incrementally instead of re-syncing every operation.

## Response `200`

List of operations matching the filters

- OperationDto[]
  - `id` string, required — Unique id associated to this entity.
  - `name` string, required — Identifying name. Must be unique.
  - `description` string, nullable — A verbose description of the location.
  - `setupTime` ItemRoutingOperationTime — Operation time and type
    - `time` number, double — Time or units of this operation
    - `option` 'fixedSeconds' | 'fixedMinutes' | 'fixedHours' | 'fixedDays' | 'secondsPerUnit' | 'minutesPerUnit' | 'hoursPerUnit' | 'daysPerUnit' | 'unitsPerHour' — The time unit or option used in operation times
  - `laborTime` ItemRoutingOperationTime — Operation time and type
    - `time` number, double — Time or units of this operation
    - `option` 'fixedSeconds' | 'fixedMinutes' | 'fixedHours' | 'fixedDays' | 'secondsPerUnit' | 'minutesPerUnit' | 'hoursPerUnit' | 'daysPerUnit' | 'unitsPerHour' — The time unit or option used in operation times
  - `machineTimeTrackingEnabled` boolean, nullable — Is machine time tracking enabled.
  - `machineTime` ItemRoutingOperationTime — Operation time and type
    - `time` number, double — Time or units of this operation
    - `option` 'fixedSeconds' | 'fixedMinutes' | 'fixedHours' | 'fixedDays' | 'secondsPerUnit' | 'minutesPerUnit' | 'hoursPerUnit' | 'daysPerUnit' | 'unitsPerHour' — The time unit or option used in operation times
  - `isOutsideProcessing` boolean — Specifies whether this is an outside processing operation
  - `outsideProcessingCost` ItemRoutingOutsideProcessingOperationCost — Outside processing operation cost
    - `costOption` 'fixed' | 'perUnit' — The cost option for the outside processing operation
    - `fixedCost` number, double, nullable — The fixed total cost for the operation
    - `perUnitCost` number, double, nullable — The cost per unit for the operation
  - `unattended` boolean — Specifies whether this is operation will be unattended.
  - `defaultVendorId` string, nullable — Default vendor id that will be used for this operation. Please reference /api/vendors endpoint.
  - `leadDays` integer — Lead days.
  - `accountingCodeId` string, nullable — Accounting code key identifier. Please reference /api/accounting-codes endpoint.
  - `workCenters` CommonReferenceDto[] — The work centers associated with the operation
    - `id` string, nullable — Unique Id associated to the referenced object
    - `name` string, nullable — Descriptive name associated to the object
  - `isNestable` boolean — Indicates if this operation is nestable.
  - `instructions` string, nullable — Instructions.
  - `rates` DtoOperationRates — Hourly cost and shop rates for an operation, in the shop's primary currency. Cost rates override work-center rates when costing jobs; shop rates drive quoted pricing for the operation. A null rate means no operation-level rate is set and the work-center rates apply.
    - `hourlyRateForSetupInPrimaryCurrency` number, double, nullable — Hourly cost rate applied to setup time.
    - `hourlyRateForLaborInPrimaryCurrency` number, double, nullable — Hourly cost rate applied to labor time.
    - `hourlyRateForOverheadInPrimaryCurrency` number, double, nullable — Hourly overhead cost rate.
    - `hourlyRateForMachineInPrimaryCurrency` number, double, nullable — Hourly cost rate applied to machine time.
    - `hourlyShopRateForSetupInPrimaryCurrency` number, double, nullable — Hourly shop rate charged for setup time when pricing.
    - `hourlyShopRateForRunInPrimaryCurrency` number, double, nullable — Hourly shop rate charged for run time when pricing.
    - `hourlyShopRateForMachineInPrimaryCurrency` number, double, nullable — Hourly shop rate charged for machine time when pricing.

---

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