Creates a new externally owned account (EOA) wallet for the platform tenant with specified configuration.
Request containing wallet creation details including tenant, name, address, and blockchain.
Request to create a new externally owned account (EOA) wallet.
Identifier of the tenant that will own the wallet.
1024
Name to assign to the wallet.
"My Wallet"
Blockchain address of the wallet.
"0x1234567890abcdef1234567890abcdef12345678"
Identifier of the blockchain network where the wallet exists.
137
Wallet created successfully.
Wrapper for API operation results containing success status, error information, and return value.
True if the operation completed successfully, false otherwise.
true
True if the operation failed, false otherwise.
false
Error information returned when the operation fails.
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}The result value returned when the operation is successful.
{
"id": 2048,
"walletAddress": "0x1234567890abcdef1234567890abcdef12345678",
"blockchainId": 137
}