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.

POST {{GAME_SERVER_API}}/equipment/user/list

Request Body

Name
Type
Description

account*

String

UMI_UID

ts*

Int

timestamp

sign*

String

Signature

{
    "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
        }
    ]
}
```

Last updated