---
title: "Get response from asynchronous bulk order operation"
method: GET
path: "/v1/orders/bulk/{id}"
tags: ["Order"]
---

# Get response from asynchronous bulk order operation

`GET /v1/orders/bulk/{id}`

Retrieve the results of a previously submitted bulk order operation. Returns the status and individual results for each order in the batch.

## Path parameters

- `id` string, required — The ID of the bulk operation

## Response `200`

OK

- GetBulkOperationResponse — Bulk Operation Response for Orders.
  - `status` 'QUEUED' | 'IN_PROGRESS' | 'SUCCESS' | 'FAILED' | 'CANCELLED' | 'SKIPPED' | 'SCHEDULED', required — Status of an activity.
  - `summary` BulkOperationSummary, required
    - `totalOperations` integer, required — The total number of operations in the bulk operation
    - `successfulOperations` integer, required — The number of successful operations in the bulk operation
    - `failedOperations` integer, required — The number of failed operations in the bulk operation
  - `results` BulkOperationResult[], required — The results of the bulk operation
    - `id` string, required — The ID of the order.
    - `status` 'success' | 'error', required
    - `action` 'create' | 'upsert' | 'update' | 'delete', required — The action of the bulk operation
    - `errorMessage` string, nullable — The error message of the bulk operation (will be populated with error message if the operation failed)

## Other responses

- `422` — Unprocessable Content

---

[API](https://skmtc.net/usenash/apis/nash-api.md) · [All operations](https://skmtc.net/usenash/apis/nash-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usenash/nash-api/revisions/09a23a95889b/schema)
