### Overview

With this endpoint, you can retrieve the [Bulk Update Log](https://help.sellercloud.com/omnichannel-ecommerce/bulk-update-products-overview/#Access_the_Bulk_Update_Log) of a single existing Queued Job. To consume it, you must be an [Authenticated User](https://developer.sellercloud.com/dev-article/authentication/).

### Endpoint

An example of this endpoint for server **XX** is:

https:// **xx**.api.sellercloud.com/rest/api/QueuedJobs/BulkUpdateLog/{id}

For your server, the endpoint will be:

https:// **{your\_server\_id}**.api.sellercloud.com/rest/api/QueuedJobs/BulkUpdateLog/{id}

### Request

- Method Type: **HttpGet**
- Authorization: Use **Bearer Token** \+ token received from token authentication
- Header info: **Content-Type: application/json**
- Parameters:

|     |     |     |     |
| --- | --- | --- | --- |
| **Parameters** | **Data Type** | **Description** | **Is Required** |
| **id** | path/int | The ID of the existing Queued Job you are requesting. | Yes |

### Response

- If the user is authenticated, then the response will be **Status Code 200 => OK** and the Job’s Bulk Update Log in JSON format.
- If the user is not authenticated, then the response will be **Status Code 401 => Not Valid Token.**
- In case of error, the response will be **Status Code 500 => Internal Server Error.**

### Response Body

```json
{
  "CompanyId": 0,
  "SubtractUnExportedOrderQty": true,
  "SubtractUnShippedQty": true,
  "CreateProductIfNotExists": true,
  "DoNotUpdateProducts": true,
  "TotalRecords": 0,
  "TotalSucceeded": 0,
  "TotalFailed": 0,
  "DateUploaded": "2026-02-17T14:06:24.992Z",
  "UploadedById": 0,
  "UploadedByName": "string",
  "Products": {
    "Results": [
      {
        "ID": 0,
        "ProductID": "string",
        "IsSucceeded": true,
        "HasWarning": true,
        "ErrorMsg": "string",
        "Details": [
          {
            "ID": 0,
            "ColumnName": "string",
            "OriginalValue": "string",
            "NewValue": "string",
            "ErrorMsg": "string"
          }
        ]
      }
    ],
    "TotalResults": 0
  },
  "DsProduct": [
    {
      "ProductID": "string"
    }
  ]
}
```
