# Get bulk field update operation status

Get the status and result of a previously submitted bulk field update operation.

Endpoint: GET /v1/entities/bulk-field-update/{operation-id}
Version: 1.0
Security: x-api-key

## Header parameters:

  - `Harness-Account` (string)
    Identifier field of the account the resource is scoped to.

## Path parameters:

  - `operation-id` (string, required)
    The operationId returned when the bulk update was submitted.

## Response 200 fields (application/json):

  - `operationId` (string)

  - `status` (string)
    One of QUEUED, PROCESSING, SUCCESS, PARTIAL_SUCCESS, FAILED, DEAD_LETTER.

  - `matched` (integer)

  - `permitted` (integer)

  - `updated` (integer)
    Number of entities actually updated.

  - `skipped` (array)
    Entities that matched but were not updated, with a reason.

  - `skipped.entityRef` (string)

  - `skipped.reason` (string)
    One of NO_PERMISSION, GIT_NON_DEFAULT_BRANCH, VALIDATION_FAILED.

  - `errors` (array)
    Per-entity failures encountered during processing.

  - `errors.entityRef` (string)

  - `errors.errorMessage` (string)

  - `errorMessage` (string)
    Top-level error message when the whole operation failed.


