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",           
        }
    ]
}

Last updated