# Product List

## Product Lists

<mark style="color:green;">`POST`</mark> `/store-api/product-lists`

Dieser Endpunkt... ToDo

## Create Product Lists&#x20;

<mark style="color:green;">`POST`</mark> `/store-api/product-lists/create`

#### Request Body

| Name                                   | Type   | Description |
| -------------------------------------- | ------ | ----------- |
| name<mark style="color:red;">\*</mark> | String |             |

{% tabs %}
{% tab title="201: Created " %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="400: Bad Request " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}

## Retrieve Product List

<mark style="color:blue;">`GET`</mark> `/store-api/product-lists/detail/{id}`

#### Path Parameters

| Name                                 | Type   | Description |
| ------------------------------------ | ------ | ----------- |
| id<mark style="color:red;">\*</mark> | String |             |

## Delete Product Lists

<mark style="color:red;">`DELETE`</mark> `/store-api/product-lists/{id}`

#### Request Body

| Name  | Type   | Description |
| ----- | ------ | ----------- |
| items | String |             |

## Update Porduct Lists

<mark style="color:purple;">`PATCH`</mark> `/store-api/product-lists/{id}`

<mark style="color:red;">`DELETE`</mark> `/store-api/product-lists/product/{id}/{productListId}`

#### Path Parameters

| Name                                            | Type   | Description |
| ----------------------------------------------- | ------ | ----------- |
| id<mark style="color:red;">\*</mark>            | String |             |
| productListId<mark style="color:red;">\*</mark> | String |             |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.b2b-sellers.com/b2b-platform/1/api-references/store-api/product-list.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
