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

# Create ProductList

Create ProductList will create a new list of products similar to how the Quicklist application creates a new list. From there the product list can be used to list new products through the Seller Portal interface on a Pro account.

[block:callout]
{
  "type": "info",
  "title": "Note!",
  "body": "This end point requires specific permissions and may not be accessible by all users."
}
[/block]

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"success\": boolean,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productListKey\": \"string\"\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"productListKey\": \"c8e4cabd-5e7c-442d-a130-69038d94990b\"\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/inventory/productLists": {
      "post": {
        "tags": [
          "Inventory"
        ],
        "summary": "Create ProductList",
        "operationId": "Inventory_CreateProductList",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/TcgApiModel.Inventory.NewProductListCriteria"
                }
              }
            },
            "text/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/TcgApiModel.Inventory.NewProductListCriteria"
                }
              }
            },
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/TcgApiModel.Inventory.NewProductListCriteria"
                }
              }
            }
          },
          "description": "The SKUs and Quantities that make up the new ProductList.",
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Inventory.NewProductList_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Inventory.NewProductList_"
                }
              }
            }
          },
          "400": {
            "description": "The ProductList contains duplicate SKUs."
          },
          "404": {
            "description": "At least one of the specified SKUs could not be found."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Inventory.NewProductListCriteria": {
        "type": "object",
        "properties": {
          "quantity": {
            "format": "int32",
            "type": "integer"
          },
          "productConditionId": {
            "format": "int64",
            "type": "integer"
          }
        }
      },
      "TcgApiModel.Inventory.NewProductList": {
        "type": "object",
        "properties": {
          "productListKey": {
            "format": "uuid",
            "type": "string"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Inventory.NewProductList_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Inventory.NewProductList"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```