Get Job Bulk Update Log - Sellercloud API Docs

Overview

With this endpoint, you can retrieve the Bulk Update Log of a single existing Queued Job. To consume it, you must be an Authenticated User.

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

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

Response

Response Body

{
  "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"
    }
  ]
}