Create user sub-contract wallet
POST/user/create
Batch create user sub-contract wallets on all chains opened by the merchant.
Request
- application/json
Body
required
User wallet creation form
uuid stringrequired
User UUID, usually used to associate with the user of the merchant system
Responses
- 200
- 201
- 401
- 403
- 404
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
code int32required
Status code
msg stringrequired
Status message on success or error message on failure
description string
Detailed description when error
data int32required
User ID
{
"code": 0,
"msg": "string",
"description": "string",
"data": 0
}
{
"code": 200,
"msg": "success",
"data": 1024
}
Created
Unauthorized
Forbidden
Not Found
Loading...