Skip to main content
POST
/
tenant
/
{tenantId}
/
wallets
/
multisignature
/
{walletTenantId}
/
remove_owner
/
{ownerWalletTenantId}
Creates a transaction proposal for removing an owner from a multisignature wallet.
curl --request POST \
  --url https://api.example.com/tenant/{tenantId}/wallets/multisignature/{walletTenantId}/remove_owner/{ownerWalletTenantId} \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Path Parameters

tenantId
integer<int64>
required

Identifier of the tenant.

walletTenantId
integer<int64>
required

Identifier of the wallet tenant.

ownerWalletTenantId
integer<int64>
required

Identifier of the owner wallet tenant to remove.

Body

application/json

Model containing the updated threshold after removal.

Represents a request model for removing an owner from a multisignature wallet.

walletTenantId
integer<int64>

Identifier of the target multisignature wallet tenant.

Example:

2048

ownerWalletTenantId
integer<int64>

Identifier of the wallet tenant owner to remove.

Example:

3001

threshold
integer<int32>

New signature threshold to set after owner removal.

Example:

2

safeName
string

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

Name of the blockchain network.

Example:

"Polygon"

ownerWalletName
string

Name of the wallet owner to remove.

Example:

"Owner Wallet"

ownerWalletAddress
string

Blockchain address of the wallet owner to remove.

Example:

"0x1234567890abcdef1234567890abcdef12345678"

currentOwnersCount
integer<int32>

Total number of owners currently assigned to the multisignature wallet.

Example:

3

Response

200 - application/json

Remove owner 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 }