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

Mint

Generate items from the game's server and return a JSON data list. If the item cannot be generated, an empty list will be returned.

This is usually used when minting items for primary sale on the Umiverse marketplace.

Parameters

Generate equipment from the system and return a JSON data list. If the equipment cannot be generated, an empty list will be returned. The equipment here is generated by the system.

POST {{GAME_SERVER_API}}/equipment/system/mint

Request Body

Name
Type
Description

itemdefid*

String

Equipment identification id defined in UMI GAME CONSOLE

serverId

String

ts*

Int

timestamp

sign*

String

Signature

{
    "code": 200,
    "data": [
        {
            "tradingId": "58921c186166b2002fdcb5df6bd4d5f4",
            "cfgEquipmentId": 90101,
            "name": "Sword of God",
            "desc": "Limited weapons, the legendary weapons used by the gods",           
        }
    ]
}

PreviousUmiverse FeaturesNextSend a server-generated item to Umi account

Last updated 1 year ago