Creates a blockchain transaction proposal to update the signature threshold of a multisignature wallet.
Identifier of the wallet tenant.
Model containing the new threshold value for the multisignature wallet.
Represents a model for updating the signature threshold of a multisignature wallet.
Name of the multisignature wallet.
"My MultiSig Wallet"
Provider of the multisignature wallet (e.g., Safe, Gnosis).
GnosisSafe "Safe"
Name of the blockchain network.
"Polygon"
Array of owner wallets currently in the multisignature wallet.
[
{
"walletTenantId": 3001,
"walletAddress": "0x1234...",
"walletName": "Owner Wallet"
}
]New signature threshold value (must be between 1 and the number of owners).
3
Identifier of the wallet tenant.
2048
Threshold update proposal 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.
{ "success": true }