Fetch the complete documentation index at: https://docs.tcgplayer.com/llms.txt. Use this file to discover all available pages before exploring further.

# Batch Update Store Sku Prices

Perform multiple price updates asynchronously in a batch.  The response will contain a single GUID to identify the batch.  All price updates
are applied to the inventory of the seller indicated by the bearer token used to make this request. When the batch has been processed, a message
will be sent to your application's web hook containing the GUID from this response.

[block:code]
{
  "codes": [
    {
      "code": "[\n  {\n    \"skuId\": 15179,\n    \"price\": 7000,\n    \"channelId\": 1\n  },\n  {\n  \t\"skuId\": 21752,\n    \"price\": 7000,\n    \"channelId\": 1\n  }\n]",
      "language": "json",
      "name": "Example Request"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/stores/{storeKey}/inventory/skus/batch": {
      "post": {
        "tags": [
          "Stores"
        ],
        "summary": "Batch Update Store Sku Prices",
        "description": "Perform multiple price updates asynchronously in a batch.  The response will contain a single GUID to identify the batch.  All price updates\r\nare applied to the inventory of the seller indicated by the bearer token used to make this request. When the batch has been processed, a message\r\nwill be sent to your application's web hook containing the GUID from this response.",
        "operationId": "Stores_BatchUpdateStoreSkuPrices",
        "parameters": [
          {
            "name": "storeKey",
            "in": "path",
            "description": "Required. A unique key used to identify the caller of the API.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/TcgApiModel.Store.SkuPriceUpdate"
                }
              }
            },
            "text/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/TcgApiModel.Store.SkuPriceUpdate"
                }
              }
            },
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/TcgApiModel.Store.SkuPriceUpdate"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_System.Guid_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_System.Guid_"
                }
              }
            }
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Store.SkuPriceUpdate": {
        "type": "object",
        "properties": {
          "skuId": {
            "format": "int64",
            "type": "integer"
          },
          "price": {
            "format": "double",
            "type": "number"
          },
          "channelId": {
            "format": "int32",
            "type": "integer"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_System.Guid_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "format": "uuid",
              "type": "string"
            }
          }
        }
      }
    }
  },
  "x-readme": {
    "explorer-enabled": true,
    "proxy-enabled": true
  },
  "_id": {
    "buffer": {
      "0": 94,
      "1": 217,
      "2": 152,
      "3": 86,
      "4": 78,
      "5": 118,
      "6": 200,
      "7": 0,
      "8": 17,
      "9": 105,
      "10": 157,
      "11": 192
    }
  }
}
```