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

# Set Store Status

If a store's status is either Live or Hold - User Request then this action may be called to flip the store between the
two.  When the store is Live, it's inventory is visible in the marketplace.  When the store is not Live, it's inventory
is hidden from the marketplace.  Stores may voluntarily hide their inventory by switching their status to Hold - User
Request.  There are other statuses that TCGplayer can put the store in that wil cause it's inventory to be hidden from
the marketplace.  Stores cannot put themselves in or take themselves out of these statuses.  Only a TCGplayer admin or
customer service rep can interact with stores with these statuses.

Be careful with this endpoint. If a store is moved to "active" status and a sale is made that is unexpected, you may end up offering refunds and upsetting a customer!

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/stores/{storeKey}/status/{status}": {
      "put": {
        "tags": [
          "Stores"
        ],
        "summary": "Set Store Status",
        "description": "If a store's status is either Live or Hold - User Request then this action may be called to flip the store between the\r\ntwo.  When the store is Live, it's inventory is visible in the marketplace.  When the store is not Live, it's inventory\r\nis hidden from the marketplace.  Stores may voluntarily hide their inventory by switching their status to Hold - User\r\nRequest.  There are other statuses that TCGplayer can put the store in that wil cause it's inventory to be hidden from\r\nthe marketplace.  Stores cannot put themselves in or take themselves out of these statuses.  Only a TCGplayer admin or\r\ncustomer service rep can interact with stores with these statuses.",
        "operationId": "Stores_SetStoreStatus",
        "parameters": [
          {
            "name": "storeKey",
            "in": "path",
            "description": "Required. A unique key used to identify the caller of the API.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "status",
            "in": "path",
            "description": "Required. \"active\" or \"inactive\"",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_System.Object_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_System.Object_"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "500": {
            "description": "Internal Server Error"
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Common.ApiResult_System.Object_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "type": "object"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```