---
title: "Get a specific operation for an item to make on a job"
method: GET
path: "/api/jobs/{jobId}/items-to-make/{itemToMakeId}/operations/{operationId}"
tags: ["Job Item To Make Operation"]
---

# Get a specific operation for an item to make on a job

`GET /api/jobs/{jobId}/items-to-make/{itemToMakeId}/operations/{operationId}`

## Path parameters

- `jobId` string, required
- `itemToMakeId` string, required
- `operationId` string, required

## Response `200`

The operation for the given id

- ItemToMakeOperationDto — Represents an routing operation on a job item to make
  - `id` string, required — Unique Id associated to this entity
  - `status` 'pending' | 'ready' | 'running' | 'paused' | 'complete' | 'cancelled', required — Job Item to Make Operation status
  - `order` integer, required — Routing order of the operation
  - `systemOperationId` string, required — Identifier of the system operation associated to this entity Please reference api/operations.
  - `isOutsideProcessing` boolean, required — Denotes whether this is an outside processing operation
  - `originalScheduledStartUtc` string, date-time, nullable — The first scheduled start time.
  - `originalScheduledEndUtc` string, date-time, nullable — The first scheduled end time.
  - `scheduledStartUtc` string, date-time, nullable — Scheduled start datetime of the operation
  - `scheduledEndUtc` string, date-time, nullable — Scheduled end datetime of the operation
  - `completedOnUtc` string, date-time, nullable — The operation completion datetime.
  - `completedById` string, nullable — Operation completed user identifier. Please reference /api/users endpoint.
  - `scheduledEquipmentId` string, nullable — Identifier of the equipment that this operation is scheduled to run on
  - `scheduledEquipmentName` string, nullable — The name of the equipment that this operation is scheduled to run on.
  - `customFields` object, nullable — The custom field data on the object
  - `instructions` string, nullable — Instructions specific to the item to make operation.
  - `name` string, nullable — System operation name.
  - `leadTimeInDays` integer, nullable — Number of days required between order and receipt. Only applicable for outside processing operations.
  - `associatedPurchaseOrderIds` string[], nullable — Associated purchase order IDs.
  - `estimatedSetupTimeInSeconds` number, double, nullable — The estimated setup time in seconds for the operation.
  - `estimatedSetupTimeBasis` 'fixed' | 'perUnit'
  - `estimatedRunTimeInSeconds` number, double, nullable — The estimated run time in seconds for the operation. Note: This is an obsolete field from when operation could not separate between machine (unattended) and labor (attended) time.
  - `estimatedRunTimeBasis` 'fixed' | 'perUnit' | 'unitsPerHour'
  - `estimatedMachineTimeInSeconds` number, double, nullable — The estimated machine time in seconds for the operation.
  - `estimatedMachineTimeBasis` 'fixed' | 'perUnit' | 'unitsPerHour'
  - `estimatedLaborTimeInSeconds` number, double, nullable — The estimated labor time in seconds for the operation.
  - `estimatedLaborTimeBasis` 'fixed' | 'perUnit' | 'unitsPerHour'
  - `isMachineTimeOnly` boolean — Whether this operation can be run without an employee present. If true, use the machineTime properties. If false, use the laborTime properties.
  - `workOrderId` string, nullable — Identifier of work order that this operation is associated to, if applicable. Please reference api/work-orders endpoint.

## Other responses

- `404` — Job, item to make, or operation 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/revisions/a41e60b375bc/schema)
