UMIVERSE SDK
  • UMIVERSE SDK Doc
    • Overview
    • Configure Secret Key and API Domain
    • Sync Account
      • OAuth login
        • Preparations for OAuth
        • Use Authorization_Code to get UMI_UID
        • Decrypt Authorization Code
          • AES Decrypt
    • Dive Points
      • Increase DivePoint
        • API
      • Mission System
        • Request task panel view in H5 game
    • Game Recharge
      • Initiate Recharge Request
      • Handle Recharge Completion
  • Signature
    • Typescript
    • PHP
    • Java
    • C++
  • SDK DEMO
  • Legacy
    • API Key/Secret
    • SignUp & SignIn
    • Get UMI UID
    • Authentication
    • Umiverse Features
      • Mint
      • Send a server-generated item to Umi account
      • Get all items that the player can put up for sale
      • Send an item to a player
      • Deduct an item from a player
    • Redirect
  • Developer Console
    • Add Game Information
Powered by GitBook
On this page
  1. Legacy
  2. Umiverse Features

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

PreviousSend a server-generated item to Umi accountNextSend an item to a player

Last updated 1 year ago