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

# Update SKU Buylist Price

Updates a Buylist pricing that has already been set in the system, either through "Create SKU Buylist" or through the TCGplayer interface. Accepts price in the body of a request.

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/stores/{storeKey}/buylist/skus/{skuId}/price": {
      "put": {
        "tags": [
          "Stores"
        ],
        "summary": "Update SKU Buylist Price",
        "operationId": "Stores_UpdateStoreBuylistSkuPrice",
        "parameters": [
          {
            "name": "storeKey",
            "in": "path",
            "description": "Required. A unique key used to identify the caller of the API.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "skuId",
            "in": "path",
            "description": "Required. The Id of the SKU to update.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TcgApiModel.Store.BuylistPriceUpdate"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/TcgApiModel.Store.BuylistPriceUpdate"
              }
            },
            "application/x-www-form-urlencoded": {
              "schema": {
                "$ref": "#/components/schemas/TcgApiModel.Store.BuylistPriceUpdate"
              }
            }
          },
          "description": "The new price for the SKU.",
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Store.Sku_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Store.Sku_"
                }
              }
            }
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Common.Language": {
        "type": "object",
        "properties": {
          "languageId": {
            "format": "int32",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "abbr": {
            "type": "string"
          }
        }
      },
      "TcgApiModel.Store.BuylistPriceUpdate": {
        "type": "object",
        "properties": {
          "skuId": {
            "format": "int64",
            "type": "integer"
          },
          "price": {
            "format": "double",
            "type": "number"
          }
        }
      },
      "TcgApiModel.Store.Sku": {
        "type": "object",
        "properties": {
          "skuId": {
            "format": "int64",
            "type": "integer"
          },
          "storePriceCustomId": {
            "format": "int64",
            "type": "integer"
          },
          "condition": {
            "$ref": "#/components/schemas/TcgApiModel.Store.Condition"
          },
          "language": {
            "$ref": "#/components/schemas/TcgApiModel.Common.Language"
          },
          "foil": {
            "type": "boolean"
          },
          "price": {
            "format": "double",
            "type": "number"
          },
          "quantity": {
            "format": "int32",
            "type": "integer"
          },
          "isFeatured": {
            "type": "boolean"
          },
          "isCustom": {
            "type": "boolean"
          },
          "title": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "mainImageUrl": {
            "type": "string"
          },
          "additionalImageUrls": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "TcgApiModel.Store.Condition": {
        "type": "object",
        "properties": {
          "conditionId": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Store.Sku_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Store.Sku"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```