---
title: "Adds additional quantity completed to a job operation without completing the operation.
Each call will increment the quantity completed by the specified amount."
method: POST
path: "/api/jobs/{jobId}/items-to-make/{itemToMakeId}/operations/{operationId}/add-quantity-completed"
tags: ["Job Item To Make Operation"]
---

# Adds additional quantity completed to a job operation without completing the operation.
Each call will increment the quantity completed by the specified amount.

`POST /api/jobs/{jobId}/items-to-make/{itemToMakeId}/operations/{operationId}/add-quantity-completed`

This is a non-idempotent action. Multiple calls with the same parameters will result in 
the quantity being added multiple times. Implement appropriate client-side controls to 
prevent duplicate submissions.

## Path parameters

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

## Request body

- ItemsToMakeOperationsAddQuantityCompletedRequest — Request to add additional quantity completed to a job operation
  - `additionalQuantity` number, double, required — The additional quantity to add to the operation's completed quantity. Must be greater than zero.

## Response `200`

OK

- ItemsToMakeOperationsAddQuantityCompletedResponse — Response after adding additional quantity completed to a job operation
  - `jobId` string, required — The ID of the job
  - `itemToMakeId` string, required — The ID of the item to make
  - `operationId` string, required — The ID of the operation
  - `previousQuantityCompleted` number, double, required — The quantity completed before this action
  - `additionalQuantityAdded` number, double, required — The quantity added in this action
  - `newTotalQuantityCompleted` number, double, required — The new total quantity completed after this action
  - `quantityRequired` number, double, required — The total quantity required for this operation
  - `operationStatus` string, required — The current status of the operation

---

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