Skip to main content

Query user wallet details

GET 

/user/detail

Query the details of the user sub-contract wallet by user ID or UUID.

Request

Query Parameters

    userId int32

    User ID

    userId and UUID must be passed at least one

    UUID string

    User UUID

    userId and UUID must be passed at least one

    chainId int32

    Chain ID

    This is the platform internal ID, not the chain ID on the chain or from the wallet, can be obtained from Get Chain List interface

Responses

OK

Schema

    code int32required

    Status code

    msg stringrequired

    Status message on success or error message on failure

    description string

    Detailed description when error

    data

    object

    User object

    userId int32required

    User ID

    uuid stringrequired

    User UUID

    createTime date-timerequired

    User creation time

    userWallet

    object[]

    required

    list of user sub-contract wallets

  • Array [

  • chainId int32required

    Chain ID

    This is the platform internal ID, not the chain ID on the chain or from the wallet, can be obtained from Get Chain List interface

    walletId int32required

    User sub-contract wallet ID

    walletAddress stringrequired

    User sub-contract wallet address

  • ]

  • userType int32

    Possible values: [0, 1]

    User type:

    • 0 - Recharge type user, the wallet address is generated through the API interface (Create User Subcontract Wallet)
    • 1 - Payment type user, the wallet address is automatically generated by the system during the payment process
Loading...