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 Buylist Prices

Perform multiple buylist updates asynchronously in a batch.  The response will
contain a single GUID to identify the batch.  All buylist updates are applied
to the buylist 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.

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/stores/{storeKey}/buylist/skus/batch": {
      "post": {
        "tags": [
          "Stores"
        ],
        "summary": "Batch Update Store Buylist Prices",
        "description": "Perform multiple buylist updates asynchronously in a batch.  The response will\r\ncontain a single GUID to identify the batch.  All buylist updates are applied\r\nto the buylist of the seller indicated by the bearer token used to make this\r\nrequest. When the batch has been processed, a message will be sent to your\r\napplication's web hook containing the GUID from this response.",
        "operationId": "Stores_BatchUpdateStoreBuylistPrices",
        "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.BuylistPriceUpdate"
                }
              }
            },
            "text/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/TcgApiModel.Store.BuylistPriceUpdate"
                }
              }
            },
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/TcgApiModel.Store.BuylistPriceUpdate"
                }
              }
            }
          },
          "description": "An array of buylist price updates, including the SkuId and new Price.",
          "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.BuylistPriceUpdate": {
        "type": "object",
        "properties": {
          "skuId": {
            "format": "int64",
            "type": "integer"
          },
          "price": {
            "format": "double",
            "type": "number"
          }
        }
      },
      "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
    }
  }
}
```