Identifier of the tenant.
Request containing multisignature wallet creation details.
Represents a request payload for creating a new multisignature wallet.
Identifier of the tenant that will own the multisignature wallet.
1024
Selected provider for the multisignature wallet (e.g., Safe, Gnosis).
GnosisSafe "Safe"
Desired name of the multisignature wallet.
"My MultiSig Wallet"
Identifier of the blockchain network where the wallet will be deployed.
137
Array of blockchain addresses that will be owners of the multisignature wallet.
[
"0x1234567890abcdef1234567890abcdef12345678",
"0x567890abcdef1234567890abcdef1234567890ab"
]Required number of owner approvals needed to execute transactions.
2
MultiSignature 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
}