# Get all items that the player can put up for sale

Get all items that the player can put up for sale. If there is no item to put up for sale, an empty list will be returned.

Parameters

## Get all equipment that the player can put up for sale. If there is no equipment to put up for sale, an empty list will be returned.

<mark style="color:green;">`POST`</mark> `{{GAME_SERVER_API}}/equipment/user/list`

#### Request Body

| Name                                      | Type   | Description |
| ----------------------------------------- | ------ | ----------- |
| account<mark style="color:red;">\*</mark> | String | UMI\_UID    |
| ts<mark style="color:red;">\*</mark>      | Int    | timestamp   |
| sign<mark style="color:red;">\*</mark>    | String | Signature   |

{% tabs %}
{% tab title="200: OK " %}

````json
{
    "code": 200,
    "data": [
        {
            "cfgEquipmentId": 90101,
            "equipmentId": 1,
            "desc": "Limited weapons, the legendary weapons used by the gods",
            "name": "Sword of God",
            "account": "user_1",
            "serverId": 10001
        },
        {
            "cfgEquipmentId": 90101,
            "equipmentId": 2,
            "desc": "Limited weapons, the legendary weapons used by the gods",
            "name": "Sword of God",           
            "account": "user_1",
            "serverId": 10001
        }
    ]
}
```
````

{% endtab %}
{% endtabs %}
