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 Inventory Price

Updates the current store's pricing of this SKU from the current Store's inventory whose Seller is associated with the user's bearer token making this API call.

Updates a single SKU's price in the authenticated store.

[block:code]
{
  "codes": [
    {
      "code": "{\n  \"price\": 0,\n  \"channelId\": 0\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/{skuId}/price": {
      "put": {
        "tags": [
          "Stores"
        ],
        "summary": "Update SKU Inventory Price",
        "description": "Updates the current store's pricing of this SKU from the current Store's inventory whose Seller is associated with the user's bearer token making this API call.",
        "operationId": "Stores_UpdateStoreSkuPrice",
        "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 price for.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TcgApiModel.Store.PriceUpdate"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/TcgApiModel.Store.PriceUpdate"
              }
            },
            "application/x-www-form-urlencoded": {
              "schema": {
                "$ref": "#/components/schemas/TcgApiModel.Store.PriceUpdate"
              }
            }
          },
          "description": "The price and channel to update.",
          "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.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.Store.PriceUpdate": {
        "type": "object",
        "properties": {
          "price": {
            "format": "double",
            "type": "number"
          },
          "channelId": {
            "format": "int32",
            "type": "integer"
          }
        }
      },
      "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
    }
  }
}
```