Skip to main content
PUT
/
tenant
/
{tenantId}
/
wallets
/
multisignature
/
{walletTenantId}
/
update_threshold
Updates the signature threshold of a multisignature wallet by creating a transaction proposal.
curl --request PUT \
  --url https://api.example.com/tenant/{tenantId}/wallets/multisignature/{walletTenantId}/update_threshold \
  --header 'Content-Type: application/json' \
  --data '
{
  "safeName": "My MultiSig Wallet",
  "provider": "Safe",
  "networkName": "Polygon",
  "ownerWallets": [
    {
      "walletTenantId": 3001,
      "walletAddress": "0x1234...",
      "walletName": "Owner Wallet"
    }
  ],
  "threshold": 3,
  "walletTenantId": 2048
}
'
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.numium.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

tenantId
integer<int64>
required

Identifier of the tenant.

walletTenantId
integer<int64>
required

Identifier of the wallet tenant.

Body

application/json

Model containing the new threshold value.

Represents a model for updating the signature threshold of a multisignature wallet.

safeName
string | null

Name of the multisignature wallet.

Example:

"My MultiSig Wallet"

provider
enum<string>

Provider of the multisignature wallet (e.g., Safe, Gnosis).

Available options:
GnosisSafe
Example:

"Safe"

networkName
string | null

Name of the blockchain network.

Example:

"Polygon"

ownerWallets
object[] | null

Array of owner wallets currently in the multisignature wallet.

Example:
[
  {
    "walletTenantId": 3001,
    "walletAddress": "0x1234...",
    "walletName": "Owner Wallet"
  }
]
threshold
integer<int32>

New signature threshold value (must be between 1 and the number of owners).

Example:

3

walletTenantId
integer<int64>

Identifier of the wallet tenant.

Example:

2048

Response

200 - application/json

Threshold update proposal created successfully.

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
  "code": "ValidationError",
  "message": "The request parameters failed validation.",
  "info": [
    "The Name field is required.",
    "The Id field must be greater than 0."
  ]
}
value
object

The result value returned when the operation is successful.

Example:
{ "success": true }