Creating a wallet
Creating a wallet
application/json
Request Body
- Array [
- ]
requestId string required
business unique value
vaultId string required
Vault id
count integer
How many to create. Default value is 1, maximum value is 50.
walletInfos object[]
Wallet information If not empty, the count value must be consistent with the number of walletInfos
walletName string
Wallet name If it is empty, use the default value: wallet + random value When not empty: Wallet names under departments cannot be duplicated.
advancedEnabled integer
Advanced Function Switch (Off: 0, On: 1)
After turn on the support function: create address according to the specified path, raw data signature
Responses
- 200
successful operation
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
code integer
msg string
data object[]
walletId string
wallet id
walletName string
Wallet name
advancedEnabled integer
Advanced Function Switch (Off: 0, On: 1)
After turn on the support function: create address according to the specified path, raw data signature
success boolean
{
"code": 200,
"msg": "",
"data": [
{
"walletId": "413497079388421",
"walletName": "wallet1",
"advancedEnabled": 1
}
],
"success": true
}
Loading...