---
title: "Retrieve a bulk operation result"
method: GET
path: "/api/v2/bulk/operations/{bulkOperationId}/results"
tags: ["Operations"]
---

# Retrieve a bulk operation result

`GET /api/v2/bulk/operations/{bulkOperationId}/results`

> 🔑
>
> Required OAuth scope: `bulkOperations:read`.

Retrieves a completed or erroneous bulk operation result given its unique ID.

## Path parameters

- `bulkOperationId` string, ObjectId, required

## Headers

- `360-api-version` 'v2.0', required

## Response `200`

Returns the requested bulk operation.

- union[]
  - union
    - SuccessResultDTO
      - `input` object, required — The input object used for the operation.
      - `status` 'success', required — The status of the operation result.
      - `resourceId` string, required — The unique ID of the impacted resource.
    - ErrorResultDTO
      - `input` object, required — The input object used for the operation.
      - `status` 'error', required — The status of the operation result.
      - `errorMessage` string, required — The error message of the failed result.

## Other responses

- `400` — The operation with the given `bulkOperationId` has not run yet.
- `401` — The given access token is either missing, invalid, has expired, or has been revoked.
- `403` — The given access token does not have the required OAuth scope to execute the request.
- `404` — The given `bulkOperationId` does not correspond to any existing bulk operation.
- `429` — The client has sent too many requests in a short amount of time.

---

[API](https://skmtc.dev/360learning/apis/core-api.md) · [All operations](https://skmtc.dev/360learning/apis/core-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/360learning/core-api/revisions/94b691b0b72c/schema)
